Skip to content

dishcheng/dd_notice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

叮叮机器人sdk

For laravel >= 5.5

composer require dishcheng/dd_notice

官方设置说明

sdk设置说明

php artisan vendor:publish --tag=dd_notice

将webhook地址粘贴到config/dd_notice.php中的robot_webhook位置

文本推送方法:

use DishCheng\DdNotice\DdNotice;

DdNotice::send([
       'msgtype' => 'text',
       'text' => [
           'content' => '测试文本'
       ]
]);

更多方法参考官方设置说明