fastify-dingtalk-robot
v0.3.1
Published
fastify plugin for dingtalk robot
Downloads
7
Maintainers
Readme
fastify-dingtalk-robot
Fastify plugin for dingtalk robot.
Install
npm i fastify-dingtalk-robot --save
Usage
'use strict'
const fastify = require('fastify')()
fastify.register(require('fastify-dingtalk-robot'), {
accessToken: 'xxxxxxxxx',
secret: 'SECxxxxxx'
})
const { dingtalkRobot } = fastify
const textContent = {
msgtype: 'text',
text: {
content: '我就是我, 是不一样的烟火'
},
at: {
atMobiles: [
'156xxxx8827',
'189xxxx8325'
],
isAtAll: false
}
}
dingtalkRobot.send(textContent)
.then((res) => {
// TODO
})