米
心情
所有
图集
登录
搜索
原创
钉钉机器人接入
选择离殇
发布于:2022-05-23
## 官方文档 https://open.dingtalk.com/document/group/custom-robot-access ## 代码 ```php <?php namespace App\Robot; use App\Contracts\RobotInterface; class DingtalkRobot implements RobotInterface { protected array $config; public function __construct(){ $this->config = config('robot.dingtalk.config'); } public function send($data, $robot_key = '') { if (!empty($robot_key)) { $this->config = config('robot.dingtalk.' . $robot_key); } $secret = $this->config['secret']; $accessToken = $this->config['access_token']; // 当前时间(毫秒) $timestamp = time() * 1000; // HmacSHA256加密,设置为 true 输出原始二进制数据 $hmacsha256 = hash_hmac('sha256', $timestamp . "\n" . $secret, $secret, true); // 请求参数 $param = [ 'access_token' => $accessToken, 'timestamp' => $timestamp, // 签名值 'sign' => urlencode(base64_encode($hmacsha256)) ]; // Webhook地址 $webhook = $this->config['webhook'] . http_build_query($param); $data_string = json_encode($data); return DingtalkRobot::request_by_curl($webhook, $data_string); } public static function request_by_curl($remote_server, $post_string) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $remote_server); 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证书验证, 未调通情况可尝试添加该代码 // curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0); // curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0); $data = curl_exec($ch); curl_close($ch); return $data; } } ``` ```php $message = "我就是我,不一样的我!"; $data = array( 'at' => array('atMobiles' => [13800138000], 'isAtAll' => false), 'msgtype' => 'text', 'text' => array('content' => $message) ); $robot_key = 'TEST'; $this->robot->send($data, $robot_key); ``` 自荐一下: github.com/guanguans/notify。目前已支持 26 种推送通知。 原文:https://learnku.com/articles/68108
注:原创不易,转载请注明出处(
https://micuu.com/new/2846.html
),本站所有资源来源于网络收集,如有侵权请联系QQ245557979进行清除。
最后修改与 2022-05-23
上一篇:
Linux查看端口占用情况
下一篇:
再苦一苦百姓,骂名美国来背
留言反馈
请先登录
问题反馈渠道,如有软件无法下载或者其他问题可反馈。【由于某种原因,目前留言不展示】
用户需要登录后才能留言反馈
立即留言
珍藏视频
10分钟高效燃脂
30天高效瘦脸操
5分钟缓解颈椎操
友人
微博
全民K歌
唱吧
今日头条
悠悠网
科技小锅盖
彼岸桌面
阮一峰
laravel社区
V2ex
掘金
更多>