react-native-oauth
react-native-oauth copied to clipboard
A react-native wrapper for social authentication login for both Android and iOS
The README says: manager.authorize('google', {scopes: 'profile,email'} but this gives the error 'some requested scopes were invalid' using the following works so I will raise a PR on the README manager.authorize('google',...
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.10 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...
Google oAuth is not working for Android. I get an error - user agent not allowed in Android. 
Developing in Windows 10 - Android. Some issues I have fixed: 1. React native linking is broken. [Issue 50](https://github.com/fullstackreact/react-native-oauth/issues/50) 2. Requesting more than one scope to google failed. Solved! 3....
Show mobile version site when logging with facebook and it also fixes Disallow UserAgent issue with Google login.
When trying to run this on android, it seems that google has now disallowed web views, is there any other way to get this library to work on android? ![screenshot...
Closes #87 This sets the webview User-Agent header to solve the `disallowed_useragent` issue for Google authentication on Android.
… disallow user agent for google login in webview
fix: Android Disallowed UserAgent & OAuth request in WebView
I am trying to `POST` to Twitter's `statuses/update` endpoint: https://dev.twitter.com/rest/reference/post/statuses/update I have constructed the request in JS according to the README: ```js const twitterUrl = 'https://api.twitter.com/1.1/statuses/update.json'; const response = await...