Slack API channels.archive没有找到频道

时间:2017-08-11 11:47:53

标签: node.js slack-api

我可以成功创建一个新频道。当我想将我的频道移动到存档时,我得到一个错误代码为channel_not_found的响应,而我100%确定我的频道名称是正确的。

有谁知道为什么我收到这个?我在Node.js中使用了slack-node

    slackController.slack.api('channels.archive', {
    channel: "#test123"
}, function (err, response) {
    console.log(response);
    return callback("ok");
});

enter image description here

1 个答案:

答案 0 :(得分:2)

更新:我发现你不应该使用频道名称,而应该使用频道ID。 API文档并不清楚。