saviorlv / yii2-dingtalk
Yii2 DingTalk robot SDk
0.0.2
2018-09-26 15:03 UTC
Requires
- php: >=5.5.0
- guzzlehttp/guzzle: ^6.3
- yiisoft/yii2: ^2.0.15
This package is auto-updated.
Last update: 2024-11-10 11:49:56 UTC
README
说明
群机器人是钉钉群的高级扩展功能。群机器人可以将第三方服务的信息聚合到群聊中,实现自动化的信息同步。目前,大部分机器人在添加后,还需要进行Webhook配置,才可正常使用(配置说明详见操作流程中的帮助链接)。
例如:通过聚合GitHub,GitLab等源码管理服务,实现源码更新同步。通过聚合Trello,JIRA等项目协调服务,实现项目信息同步。
另外,群机器人支持Webhook协议的自定义接入,支持更多可能性,例如:你可将运维报警通过自定义机器人聚合到钉钉群实现提醒功能。
安装
$ composer require saviorlv/yii2-dingtalk -vvv
配置
在使用本扩展之前,你需要去 群机器人 获取相关信息。
使用
在config/main.php配置文件中定义component配置信息
'components' => [ ..... 'robot' => [ 'class' => 'Saviorlv\Dingtalk\Robot', 'accessToken' => 'xxxxxxxxx' ], .... ]
发送 Text
信息
方法:
public function sendTextMsg($content, array $atMobiles = [], $isAtAll = false){}
参数:
实例:
$response = Yii::$app->robot->sendTextMsg( "必要忘记上下班打卡", [ 136*****134, 136*****132 ], false );
发送 Link
链接
方法:
public function sendLinkMsg($title, $text, $picUrl = '', $messageUrl){}
参数:
实例:
$response = Yii::$app->robot->sendLinkMsg( "上下班打卡", "有些同志上下班就是不打卡,QAQ", "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1536321778370&di=46a7abc85f6fe1de8df8fbdc5b95d68d&imgtype=0&src=http%3A%2F%2Fimg4.duitang.com%2Fuploads%2Fitem%2F201407%2F21%2F20140721224026_KU3GA.thumb.700_0.jpeg", "https://github.com/saviorlv?tab=repositories" );
发送 MarkDown
消息
方法:
public function sendMarkdownMsg($title, $content, array $atMobiles = [], $isAtAll = false){}
参数:
实例:
$response = Yii::$app->robot->sendMarkdownMsg( "上下班打卡", " ###有些同志上下班就是不打卡,`QAQ`", [ 136*****134, 136*****132 ], false );
整体跳转 ActionCard
类型
方法:
public function sendActionCardMsg($title, $content, $singleURL, $hideAvatar = 0, $btnOrientation = 0, $singleTitle = '阅读原文'){}
参数:
实例:
$response = Yii::$app->robot->sendActionCardMsg( "上下班打卡", " 有些同志上下班就是不打卡,QAQ", "https://github.com/saviorlv?tab=repositories", 0, 0, "你看不看" );
独立跳转 ActionCard
类型
方法:
public function sendSingleActionCardMsg($title, $content, $hideAvatar = 0, $btnOrientation = 0, array $btns=[]){}
参数:
实例:
$response = Yii::$app->robot->sendSingleActionCardMsg( "上下班打卡", " 有些同志上下班就是不打卡,QAQ", 0, 1, [ [ "title"=> "内容不错", "actionURL"=> "https://www.dingtalk.com/" ], [ "title"=> "不感兴趣", "actionURL"=> "https://www.dingtalk.com/" ] ] );
FeedCard
类型
方法:
public function sendFeedCardMsg(array $links=[]){}
参数:
实例:
$response = Yii::$app->robot->sendFeedCardMsg([ [ "title"=> "时代的火车向前开", "messageURL"=> "https://mp.weixin.qq.com/s?__biz=MzA4NjMwMTA2Ng==&mid=2650316842&idx=1&sn=60da3ea2b29f1dcc43a7c8e4a7c97a16&scene=2&srcid=09189AnRJEdIiWVaKltFzNTw&from=timeline&isappinstalled=0&key=&ascene=2&uin=&devicetype=android-23&version=26031933&nettype=WIFI", "picURL"=> "http://b.hiphotos.baidu.com/image/pic/item/f603918fa0ec08fa98d87c8054ee3d6d55fbda39.jpg" ],[ "title"=> "时代的火车向前开", "messageURL"=> "https://mp.weixin.qq.com/s?__biz=MzA4NjMwMTA2Ng==&mid=2650316842&idx=1&sn=60da3ea2b29f1dcc43a7c8e4a7c97a16&scene=2&srcid=09189AnRJEdIiWVaKltFzNTw&from=timeline&isappinstalled=0&key=&ascene=2&uin=&devicetype=android-23&version=26031933&nettype=WIFI", "picURL"=> "http://b.hiphotos.baidu.com/image/pic/item/f603918fa0ec08fa98d87c8054ee3d6d55fbda39.jpg" ], ]);