I opened a port on my PC using ngrok
.
Was going to use the url given to enable events on my slack app.
I'm getting the following message on my terminal:
POST /slack/recieve
and I'm also getting this on the slack page.:
Your URL didn't respond with the value of the challenge parameter.
Below is the code I'm using (it's not my code. I'm doing the slackbot tutorial using botkit+node.js):
controller.hears(['^hello$'], 'direct_message,direct_mention', function(bot, message) {
bot.reply(message, "Hi there, you're on workspace: " + message.team)
});