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

Installs: 1 283

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/jumoshen/ding-bot

0.1 2019-08-02 09:13 UTC

This package is auto-updated.

Last update: 2025-12-04 22:54:48 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
});