我一直在使用 slack-node web api 和 botkit 开发一个简单的聊天机器人,但在使用 chat.delete 功能时遇到了一些问题。我能够正确列出我的所有频道,查看他们的频道 ID 和名称,但是当我尝试使用 chat.delete 函数沿着消息频道发送时,它返回“channel_not_found”。
我还尝试发送频道名称,使用“general”和我所针对的实际频道名称进行测试,两者都返回相同的错误。
我的机器人正在使用管理员用户的令牌,它应该允许删除任何消息。我的 bot 也具有 chat:write:bot 和 chat:write:user 的范围访问权限。
下面是我的代码片段 - 我也在其他地方尝试过删除直接从机器人发送的消息并得到相同的错误,所以我认为它与权限无关。我查看了文档,并且对于我下面的内容,用法似乎是正确的,但我可能遗漏了一部分。
controller.on('ambient', function(bot, message) {
web.channels.list().then((res) => {
console.log(res); // this prints out all of the channels
// listed channels show a match for the channel ID given in message.channel
});
// this call returns an error "error: Response not OK: channel_not_found"
web.chat.delete(message.channel, message.ts).then((res) => {
console.log(res + " was deleted bc it was not tagged");
}).catch((err) => { console.log(err) });
});