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

https://github.com/lsongdev/dingtalk-js

:bell: Simple DingTalk API for Node.js
https://github.com/lsongdev/dingtalk-js

dingtalk dingtalk-sdk

Last synced: 7 months ago
JSON representation

:bell: Simple DingTalk API for Node.js

Awesome Lists containing this project

README

          

## dingtalk

> Simple DingTalk API for Node.js

### installation

```bash
~$ npm i dingtalk-bot-api
```

### example

```js
const DingTalk = require('dingtalk-bot-api');

const dingtalk = new DingTalk({
access_token: '-- Your Access Token Here --'
});

dingtalk
.create()
.text('dingtalk is great!')
.send()
//-> "ok"
```

### licesne

This project is under MIT license.