前提・実現したいこと
Slack APIを活用してアプリを作成しようとしています。
ところが公式サイトにあるマニュアルと、現在のSlackのサイトの表示が異なっており、対処できない箇所が出てきたために質問をさせていただきます。
発生している問題・エラーメッセージ
slack公式
上記のサイトでは、event subscriptionsを有効にするために、
While managing your application, find the "Event Subscriptions" configuration page and use the toggle to turn it on.
とありますが、そもそもこのボタンが表示された箇所自体が、現在のSlack Appの設定画面に有りません。
メニュー構成も、上記公式サイトでの説明では
Futures
- App Home
- Incoming Webhook
- Interactivity & Shortcuts
- Slash Commands
- Workflow Steps
- OAuth & Permissions
- Event Subscriptions
...
となっていますが、現在は
Settings
- App Manifest (new)
- Incoming Webhooks
- OAuth & Permissions
- User ID Translation
- Beta Features
となっています。
メニューからevent subscriptionsが消えていますし、他のメニューを順番に見に行っても公式サイトにあるようなevent subscriptionsのON/OFFを切り替えるサイトに到達しません。
試したこと
Manifestを編集することでできるのかとも思い、redirect_urlを設定してみましたがうまくいきませんでした。
_metadata: major_version: 1 minor_version: 1 display_information: name: TESTAPP description: You are likely to be eaten by a grue. background_color: "#0000AA" long_description: This is a test. features: app_home: home_tab_enabled: true messages_tab_enabled: true messages_tab_read_only_enabled: false bot_user: display_name: TESTAPP_YES always_online: true oauth_config: redirect_urls: - http://localhost:3000/callback scopes: bot: - commands - channels:read - channels:join - app_mentions:read - chat:write - chat:write.public - incoming-webhook - workflow.steps:execute settings: org_deploy_enabled: false socket_mode_enabled: false token_rotation_enabled: true
なお、ngrokを使っています。
対処方法をご存じの方がいらっしゃいましたら、お願いいたします。

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/04 04:16