0

尝试使用BotKit让自定义集成对 3rd 方集成做出反应。第 3 方集成仅通过作为附件的回复进行通信。

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

4

1 回答 1

1

答案出现在对该问题的评论中

本质上:

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);
});
于 2017-05-25T14:33:25.233 回答