我在使用 botkit 框架时,在对邮件添加反应时做出响应,但我不确定如何在事件中提取邮件的内容被触发了。以下是我目前的情况:
controller.on('reaction_added',function(bot, event) {
if (event.reaction == 'x') {
// bot reply with the message's text
}
});
根据Slack API,我只能获得像event.item这样的数据,它包含消息的类型,通道和ts。有谁知道如何做到这一点?
答案 0 :(得分:7)
想出来。给定时间戳和频道,我能够在频道历史记录中手动搜索消息并提取我需要的数据。
function getTaskID(channel_id, timestamp, callback) {
slack.api("channels.history", {
channel: channel_id,
latest: timestamp,
count: 1,
inclusive: 1
}, function(err, response) {
// do something with the response
});
}