Aws Lambda で Botkit を使用して構築された Slack ボットをデプロイする方法。スラッシュ コマンドの場合は、以下のコードを使用してイベントに応答できます。
exports.handler = function(event, context) {
//Echo back the text the user typed in
context.succeed('You sent: ' + event.text);
};
しかし、ボットに対して同じことを行う方法がわかりません。Botkit(Howdy)を使ったBotのサンプルコードは
Controller.hears(['help'], 'direct_message,direct_mention,mention', (bot, message) => {
bot.reply(message, {
text: `You can ask me things like:
"Search Contact"
"Search Account"`
});
});