react-native-oauth icon indicating copy to clipboard operation
react-native-oauth copied to clipboard

A react-native wrapper for social authentication login for both Android and iOS

Results 106 react-native-oauth issues
Sort by recently updated
recently updated
newest added

I've implemented iOS app for my own oauth provider with rn-oauth. It works as I expected. But on Android, it doesn't. I got following error on `OAuthManager#authorize()`. ``` 04-09 22:22:55.143...

Please add support for custom schemes without `client_secret`. ```ts import OAuthManager from 'react-native-oauth'; let manager = new OAuthManager('Foo'); manager.addProvider({ foo: { client_id: 'foo' } }); manager.configure({ auth_version: '2.0', authorize_url: 'foo://login',...

Hi, i've made a simple App that reads user information from twitter once use logs in. So following call: ``` manager.authorize('twitter', {scopes: 'email'}) .then(resp => { console.log('OAuth ->', resp) })...

Can anyone help me with outlook/microsoft support for this library. Very urgent. Thanks in Advance

Hi, I can't get rid of this error :( I do not know what I do bad... Let me show you my config: In the XCode, I have: - URL...

Fix for issue #153 Assigning a user agent string generated by the device should make the login pages show in a mobile friendly format.

Hi, I have faced a following twitter exception. This issue happen only when I logged in second time. I can logged in first time though. ![image](https://user-images.githubusercontent.com/5616913/29547580-e4a7d4ee-8735-11e7-9bc5-213bbdefb459.png) Is there some setting...

I am working on a react native project and need to connects to a self hosted Identity Server (Oauth 2.0). I created a custom provider for Identity Server and add...

The current version of React Native 0.47 has removed the createJSModules method in ReactPackage. Therefore any overrides of this method will need to be removed from the library, or this...

At some point in time auth just stopped workin on android devices(works in simulator). I have google and amazon auth, both behave in similar manner. For google, when I enter...