dingtalk chatbot
1.0.3
Adopter des méthodes de développement orientées objet
git clone [email protected]:baiyutang/dingtalk-robot.git
oucomposer require baiyutang/dingtalk-robot
- Dans le tableau
$groups
du fichiersrc/config.php
, modifiez le robot du groupe DingTalk pour envoyer le jeton du groupe cible.- Reportez-vous à l'exemple de code d'assemblage
Config.php
, configurez array('group_name'=>'...your token...')
, puis $client = new ChatBot('group_name')
;$client = new ChatBot('param')
, lorsque le paramètre reçu par le constructeur ne fait pas partie des clés du tableau $groups
dans Config.php
, il sera reconnu comme un jeton. // text 类型
use DingTalkRobot At ;
use DingTalkRobot GroupChat ;
use DingTalkRobot Messages TextMessage ;
use DingTalkRobot ChatBot ;
// 链式调用设置 @ 多个手机号
$ at = new At ();
$ at -> setMobile ( ' 181****3753 ' )
-> setMobile ( ' 181****3751 ' );
// 链式调用设置消息内容
$ message = new TextMessage ();
$ message -> setContent ( '我就是我, 是不一样的烟火' )
-> setAt ( $ at );
$ client = new ChatBot ();
// 可以指定群,若不设置则发送默认的群
$ client -> send ( $ message , new GroupChat ( ' other ' ));
// markdown 类型
use DingTalkRobot GroupChat ;
use DingTalkRobot Messages MarkdownMessage ;
use DingTalkRobot ChatBot ;
$ markdown = new MarkdownMessage ();
$ markdown -> setTitle ( '杭州天气' )
-> setText ( " #### 杭州天气n" .
" > 9度,西北风1级,空气良89,相对温度73% n" .
" > ![screenshot](http://tinyurl.com/y4lbucte) n" .
" > 10点20分发布 [天气](http://www.thinkpage.cn/) " );
$ client = new ChatBot ();
$ client -> send ( $ markdown , new GroupChat ());
Licence MIT