jumoshen/ding-bot

There is no license information available for the latest version (0.1) of this package.

Send message to dingding`s group chat

0.1 2019-08-02 09:13 UTC

This package is auto-updated.

Last update: 2024-05-04 19:17:01 UTC


README

Send message to dingding`s group chat

环境要求

  • php >= 7.1.3
  • laravel >= 5.5

安装

composer require jumoshen/ding-bot:^0.1

使用

<?php
use DingBot\Services\DingBotService;
use Psr\Http\Message\MessageInterface;

#text文本
(new DingBotService('your access_token'))->text('这是个测试', [], function(MessageInterface $result){
    # do your callback
});

#markdown
(new DingBotService(''))->markdown('- title', [], function(MessageInterface $result){
    # do your callback
});