以编程方式创建Slack通道

时间:2014-05-15 00:17:51

标签: curl slack-api slack

我没有在文档中看到它,但我很好奇是否有人知道在松弛应用程序中以编程方式创建频道的方式。

这是我第一次通过slackbot通过斜杠命令尝试,但没有成功。

curl --data "/open test" https://xxxxxxx.slack.com/services/hooks/slackbot\?token\=xxxxxxxxx\&channel\=%23general

2 个答案:

答案 0 :(得分:3)

您还可以使用API​​方法channels.create直接创建新频道。

有关详细信息,请参阅documentation

答案 1 :(得分:1)

您可以使用channels.join方法通过API创建频道:https://api.slack.com/methods/channels.join

This method is used to join a channel. If the channel does not exist, it is created.

希望有所帮助!