IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> PHP知识库 -> 钉钉webhook机器人推送消息 -> 正文阅读

[PHP知识库]钉钉webhook机器人推送消息

class

<?php
define('WEBHOOK_URL', "https://oapi.dingtalk.com/robot/send?access_token=%s&timestamp=%d&sign=%s");

class Dingtalk
{
    private $config;

    public function __construct($access_token = '', $secret = '')
    {
        if (!empty($access_token) && !empty($secret)) {
            $this->config = array(
                "token" => $access_token,
                "secret" => $secret
            );
        } else {
            $this->config = array(
                "token" => "your robot access_token",
                "secret" => "your robot secret"
            );
        }
    }

    public function send($msgtype = 'text', $data = array(), $isAtAll = false, $atMobiles = array())
    {
        if (empty($data)) {
            return "msgtype can't be empty.";
        }
        $post = array(
            "msgtype" => $msgtype,
            $msgtype => $data,
            "at" => array(
                "isAtAll" => $isAtAll,
                "atMobiles" => $atMobiles
            )
        );
        $post_string = json_encode($post);
        return $this->request_by_curl($post_string);
    }

    private function request_by_curl($post_string)
    {
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $this->getUrl());
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json;charset=utf-8'));
        curl_setopt($ch, CURLOPT_POSTFIELDS, $post_string);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
        $data = curl_exec($ch);
        if (curl_getinfo($ch, CURLINFO_HTTP_CODE) >= 400) {
            return curl_getinfo($ch);
        }
        curl_close($ch);
        return $data;
    }

    private function getUrl()
    {
        $time = time() * 1000;
        $str = $time . "\n" . $this->config['secret'];
        $sign = urlencode(base64_encode(hash_hmac('sha256', $str, $this->config['secret'], true)));
        return sprintf(WEBHOOK_URL, $this->config['token'], $time, $sign);
    }

    public function sendText($msg, $atAll = false, $atMobiles = array())
    {
        return $this->send("text", array("content" => $msg), $atAll, $atMobiles);
    }
}

文本消息

$ding = new Dingtalk();
$ding -> sendText("用户A登录了后台"); #基础
$ding -> sendText("用户A登录了后台", true); # at所有人
$ding -> sendText("用户A登录了后台", false, array(15210000000)); # at单人

其他消息可自行开发

$ding = new Dingtalk();

#link
$linkData = array (
    'text' => "测试",
    "title"=>"11111",
    "picUrl"=>"https://ss2.baidu.com/6ONYsjip0QIZ8tyhnq/it/u=2985114338,3296556723&fm=58&bpow=640&bpoh=820",
    "messageUrl"=>"https://baike.baidu.com/item/%E4%BD%9F%E4%B8%BD%E5%A8%85/2794873?fr=aladdin"
);
$ding->send("link", $linkData);

#feedCard
feedCardData = array (
    "links"=>array(
        array(
            "title"=>"佟丽娅",
            "messageURL"=>"https://baike.baidu.com/item/%E4%BD%9F%E4%B8%BD%E5%A8%85/2794873?fr=aladdin",
            "picURL"=>"https://ss2.baidu.com/6ONYsjip0QIZ8tyhnq/it/u=2985114338,3296556723&fm=58&bpow=640&bpoh=820"
        ) , 
        array(
            "title"=>"杨幂",
            "messageURL"=>"https://baike.baidu.com/item/%E6%9D%A8%E5%B9%82/149851?fr=aladdin","picURL"=>"https://ss2.baidu.com/6ONYsjip0QIZ8tyhnq/it/u=2328873263,1601203834&fm=179&app=42&f=JPEG?w=121&h=140"
        ) , 
        array(
            "title"=>"陈乔恩",
            "messageURL"=>"https://baike.baidu.com/item/%E9%99%88%E4%B9%94%E6%81%A9/219495?fr=aladdin",
            "picURL"=>"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1131495323,1157171667&fm=27&gp=0.jpg"
        )
    )
);
$ding->send("feedCard", $feedCardData);

  PHP知识库 最新文章
Laravel 下实现 Google 2fa 验证
UUCTF WP
DASCTF10月 web
XAMPP任意命令执行提升权限漏洞(CVE-2020-
[GYCTF2020]Easyphp
iwebsec靶场 代码执行关卡通关笔记
多个线程同步执行,多个线程依次执行,多个
php 没事记录下常用方法 (TP5.1)
php之jwt
2021-09-18
上一篇文章      下一篇文章      查看所有文章
加:2022-03-11 21:55:31  更:2022-03-11 21:56:21 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 11:06:24-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码