Multiple Scopes

I am trying to use multiple scopes for oAuth.

https://id.twitch.tv/oauth2/authorize?client_id=&redirect_uri=http%3A%2F%2Flocalhost%3A4200%2Fcallback&response_type=code&scope=user%3Aread%3Aemail%2Buser_subscriptions

and the error is

{“status”:400,“message”:“invalid scope requested: ‘user:edit+user:read:email’”}

You URL encoded the +.

It needs to LITERALLY be a + not a %2B

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.