我使用ngrok
在我的电脑上打开了一个端口。
是否会使用给定的URL来启用我的松弛应用程序上的事件。
我在终端上收到以下消息:
POST /slack/recieve
我也在松弛的页面上看到了这个:
Your URL didn't respond with the value of the challenge parameter.
下面是我正在使用的代码(这不是我的代码。我正在使用botkit + node.js进行slackbot教程):
controller.hears(['^hello$'], 'direct_message,direct_mention', function(bot, message) {
bot.reply(message, "Hi there, you're on workspace: " + message.team)
});