PHP对接钉钉自定义机器人

该代码示例展示了如何使用PHP的GuzzleHttp库来发送消息到钉钉自定义机器人。首先,它生成加密签名,然后构造POST请求的URL,包含时间戳和签名。接着,它发送一个包含消息内容的JSONPOST请求到钉钉API。
摘要由CSDN通过智能技术生成

PHP对接钉钉自定义机器人

<?php

namespace App\Services;

use GuzzleHttp\Client;

class MessageService
{

    public static function dingSend($message = '测试')
    {
        // 加签
        $token = "";    // 机器人的token
        $secret = "";   // 钉钉给出的密钥
        // 获取微秒数时间戳
        list($s1, $s2) = explode(' ', microtime());
        // 转换成毫秒数时间戳
        $msectime = (float)sprintf('%.0f', (floatval($s1) + floatval($s2)) * 1000);
        // 拼装成待加密字符串
        // 格式:毫秒数+"\n"+密钥
        $stringToSign = $msectime . "\n" . $secret;
        // 进行加密操作 并输出二进制数据
        $sign = hash_hmac('sha256', $stringToSign, $secret, true);
        // 加密后进行base64编码 以及url编码
        $sign = urlencode(base64_encode($sign));
        // 拼接url
        $url = 'https://oapi.dingtalk.com/robot/send?access_token=' . $token;
        $url .= '&timestamp=' . $msectime; // 拼接时间戳
        $url .= '&sign=' . $sign;         // 拼接加密签名
        return  self::dingtalk_by_curl($url, $message);
    }

    /**
     * 发送消息
     */
    public static function dingtalk_by_curl($url, $message)
    {
        $client = new Client();
        $data = [
            'json' => [
                'msgtype' => 'text',
                'text' => [
                    'content' => $message
                ],
            ],
            'headers' => [
                'Content-Type' => 'application/json',
                'charset' => 'utf-8',
            ],
        ];
        $res = $client->request('POST', $url, $data)->getBody()->getContents();
        $res = json_decode($res, true);
        return $res;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值