From 9fa8159ad16204cab52fd18a34a48ebf13f800f6 Mon Sep 17 00:00:00 2001 From: hugocasa Date: Wed, 26 Aug 2026 00:41:15 +0200 Subject: [PATCH] fix: migrate slack resource-connect oauth to v2 (#10836) * fix: migrate slack resource-connect oauth to v2 Co-Authored-By: Claude Opus 5 * fix: keep slack scopes one per entry, as every other provider does Co-Authored-By: Claude Opus 5 --------- Co-authored-by: Claude Opus 5 --- backend/oauth_connect.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/oauth_connect.json b/backend/oauth_connect.json index cec49861cd..cb874eb2c7 100644 --- a/backend/oauth_connect.json +++ b/backend/oauth_connect.json @@ -16,9 +16,9 @@ "scopes": ["repository"] }, "slack": { - "auth_url": "https://slack.com/oauth/authorize", - "token_url": "https://slack.com/api/oauth.access", - "scopes": ["chat:write:user", "users:read", "users:read.email"] + "auth_url": "https://slack.com/oauth/v2/authorize", + "token_url": "https://slack.com/api/oauth.v2.access", + "scopes": ["chat:write", "chat:write.public", "channels:join", "files:write"] }, "supabase_wizard": { "auth_url": "https://api.supabase.com/v1/oauth/authorize",