HowdyAI的Botkit可以收听附件内容吗?

时间:2017-05-25 14:11:11

标签: botkit

尝试使用BotKit进行自定义集成会对第三方集成做出反应。第三方集成仅通过回复attachments进行通信。

有没有办法让我的自定义集成“听到”附件?如果它已经存在,我无法在文档中找到它。

1 个答案:

答案 0 :(得分:1)

答案出现在comments on the issue

本质:

controller.on('bot_message', function(bot, message) {
    console.log('message.attachments: ' + message.attachments);
    var attachment = message.attachments[0];
    console.log('attachments.title: ' + attachment.title);
    console.log('attachments.text: ' + attachment.text);
});