An open API service indexing awesome lists of open source software.

https://github.com/mapleincode/dt-robot

钉钉机器人
https://github.com/mapleincode/dt-robot

Last synced: 9 months ago
JSON representation

钉钉机器人

Awesome Lists containing this project

README

          

simple sdk for dingtalk robot
## Usage

```typescript
import Robot from './index';
const token = 'token';
const secret = 'secret';

const robot = new Robot(token, secret);
const textMessage = robot.createTextMessage();

textMessage.setText('hello');
textMessage.appendMobiles('1888888888');
textMessage.send();
```