パブリック・チャンネル情報にアクセス channels:history パブリック・チャンネルのメッセージにアクセス *:history プライベートなど他のチャンネルのメッセージにアクセス If you want to include private channels, DM, and group channels, you also need to enable mpim.history, im.history, groups.history
{ if (req.body.event.type === 'reaction_added') { let emoji = req.body.event.reaction; if(emoji.match(/flag-/) && req.body.event.item.type === 'message') { // 絵文字(国)と言語をマッピング e.g. jp (日本)→ ja (日本語) // conversations.replies API で、リアク字のつけられたメッセージを取得 // Google Translation API を使ってそのメッセージを指定の言語に翻訳 // chat.postMessage API で翻訳されたメッセージをスレッドに表示 } } });