我正在尝试向机器人添加新功能,该功能会主动从机器人向某些用户发送消息。我正在研究 botkit ("botkit": "^0.7.4") 和语言 nodeJS(node v10.24.1 (npm v6.14.12))。
下面是代码示例:
let bot = controller.spawn({"serviceUrl":"https://*****"});
params = { conversationType: 'personal',
tenantId: '66********',
id: 'a:1*********',
members: [
{
id: '29:1*********'
}
],
channelData: { tenant: { id: '6********' } },
is_group: false
}
bot.startConversationWithUser(params);
bot.say("hello");
虽然它没有给出任何错误,但它没有发送消息。我检查了所有文档,但没有得到任何解决方案。
谁能建议我出错的出路?向团队中的用户发送主动消息的正确方法是什么?