在 Slack 中获取频道列表

Get channel list in Slack

我正在使用 Incoming webhook 向频道发送消息。我选择 JSON 格式的频道。

var message = {
    "text" : "text",
    "channel" : "#general",
    "username" : "me"
};

如何获取 Slack 中的频道列表?

您需要使用 the Web API。传入的 webhook 对此不够。

(具体来说,你想要 channels.list。)