- 钉钉机器人开发SDK
- 前往钉钉开放平台创建应用
- 点击创建好的应用,为其添加
机器人
能力 - 点击凭证与基础信息,获取
clientId
和clientSecret
- 填写机器人信息,并指定消息接收模式为
Stream模式
- 发布机器人
npm install node-dd-bot
const {Bot}=require('node-dd-bot')
const bot=new Bot({
clientId:'',
clientSecret:''
})
bot.on('message.group',(e)=>{
e.reply('hello world')
})
bot.on('message.private',(e)=>{
e.reply('hi world')
})
bot.sendPrivateMsg('user_id',[
'你好呀',
{
type:'image',
url:'https://foo.bar/img.jpg'
}
])
bot.sendGroupMsg('converationId',[
'你好呀',
{
type:'image',
url:'https://foo.bar/img.jpg'
}
])
bot.start()