Least Intrusive Scope - Oauth?

Im using Javascript and im currently passing in the scope like this

scope: "user:read:email",

Im getting comments from my beta testers that they are uncomfortable providing an email. Is there a way to not provide a scope or is there a less intrusive scope? All I need to do is read the users profile and get some of that data when they log in on my website with twitch?

Im using the new api and this is all i see for scopes: https://dev.twitch.tv/docs/authentication/#scopes

You can request no scope at all.

If I remove scope from the Twitch Passport strategy the authentication locks up.
Ive all tried scope: " " as well

Empty array might work. Iā€™d check the library documentation. An empty scope is definitely valid

1 Like

Empty array worked, thanks!

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