Jono
03/19/2022, 5:16 PMconst { user, session, error } = await supabase.auth.signIn({
provider: 'slack',
}, {
scopes: 'team:read'
})
the url has a query param that looks like scope=profile+email+openid+team%3Aread&user_scope=
where as the slack app dashboard provides one that looks like scope=chat%3Awrite%2Cusers%3Aread%2Cteam%3Aread
when I delete profile+email+openid+
from the url slack auth works. Is there someway I can modify the url generated before opening the new oauth browser window, or where does this code live, maybe there is a param I can add/modify?
** but when I remove those then the actual signup doesn't work because the request doesn't include access to emailstnmonroe
04/27/2022, 2:56 AMstnmonroe
04/27/2022, 2:59 AMchannels:read users:read identity team:read usergroups:read
stnmonroe
04/27/2022, 3:00 AMJono
04/27/2022, 5:13 PMLior539
05/27/2022, 10:34 AMstnmonroe
05/31/2022, 9:57 PM