0
我試圖用鬆弛API https://api.slack.com/methods/channels.join但得到這種反應鬆弛機器人錯誤:「user_is_bot」的channels.join
info: ** API CALL: https://slack.com/api/channels.join
Response : { ok: false, error: 'user_is_bot' }
創建一個新的渠道我想這
controller.hears('hello', ['direct_message', 'direct_mention', 'mention'], function (bot, message) {
bot.api.channels.join({'name':'nag'}, function (err, response) {
console.log("Response : ",response);
})
});
如果我錯誤請讓我知道。我已經開始學習鬆散的API了。