recently I\'ve been learning about react native and I encountered a so farm unsolvable problem. I\'m trying to authenticate using gmail OAuth2 from my app, as a redirect paramet
From the docs, I see two problems with your URL :
- The custom scheme must contain a period to be valid
Change myscheme to something like com.myapp.
- Note the single "/" after the custom URI scheme, which is different from regular HTTP URLs
Change myscheme://oauth... to myscheme:/oauth...
After those correction, your URL should look like com.myapp.myscheme:/oauth... instead of myscheme://oauth...