react-native-oauth
react-native-oauth copied to clipboard
Invalid requested scope "email,profile" on Android for Google login
Looks like using manager.authorize('google',{scopes: 'email,profile'}) but it doesn't work at all on Android. Do we have any solution for it?
Looks like the same issue as https://github.com/fullstackreact/react-native-oauth/issues/61?
works for me
manager.authorize('google',{scopes: 'email+profile'})
Hrmm doesnt work for me. A single scope works fine but when I try to chain them, it breaks
"Some requested scopes were invalid. {invalid=[email+profile]}" I also tried {scopes: "email,profile"} and {scopes: "email profile"}
A single scope works as expected