Liu Song’s Projects


~/Projects/dingtalk

git clone https://code.lsong.org/dingtalk

dingtalk

Simple DingTalk API for Node.js

installation

~$ npm i dingtalk-bot-api

example

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.