egg-dingtalk
v2.0.0
Published
egg plugin for dingtalk
Downloads
5
Readme
egg-dingtalk
egg plugin for dingtalk
Install
$ npm i egg-dingtalk --save
Usage
// {app_root}/config/plugin.js
exports.dingtalk = {
enable: true,
package: 'egg-dingtalk',
};
// {app_root}/app/controller/test.js
exports.list = async ctx => {
ctx.body = await ctx.dingtalk.user.list('1', true);
};
Configuration
// {app_root}/config/config.default.js
exports.dingtalk = {
corpid: '',
corpsecret: '',
host: '',
enableContextLogger: '',
};
Feature
- https://open-doc.dingtalk.com/
- https://github.com/ali-sdk/node-dingtalk
Questions & Suggestions
Please open an issue here.