React Native bridge for AppAuth for supporting any OAuth 2 provider
npm install react-native-app-auth-onsite
React native bridge for AppAuth - an SDK for communicating with OAuth2 providers

[![Maintenance Status][maintenance-image]](#maintenance-status)
!Workflow Status
This versions supports react-native@0.63+. The last pre-0.63 compatible version is v5.1.3.
React Native bridge for AppAuth-iOS and
AppAuth-Android SDKS for communicating with
OAuth 2.0 and
OpenID Connect providers.
This library _should_ support any OAuth provider that implements the
OAuth2 spec.
We only support the Authorization Code Flow.
These providers are OpenID compliant, which means you can use autodiscovery.
- Identity Server4 (Example configuration)
- Identity Server3 (Example configuration)
- FusionAuth (Example configuration)
- Google
(Example configuration)
- Okta (Example configuration)
- Keycloak (Example configuration)
- Azure Active Directory (Example configuration)
- AWS Cognito (Example configuration)
These providers implement the OAuth2 spec, but are not OpenID providers, which means you must configure the authorization and token endpoints yourself.
- Uber (Example configuration)
- Fitbit (Example configuration)
- Dropbox (Example configuration)
- Reddit (Example configuration)
- Coinbase (Example configuration)
- GitHub (Example configuration)
- Slack (Example configuration)
- Strava (Example configuration)
- Spotify (Example configuration)
- Unsplash (Example configuration)
AppAuth is a mature OAuth client implementation that follows the best practices set out in
RFC 8252 - OAuth 2.0 for Native Apps including usingSFAuthenticationSession and SFSafariViewController on iOS, and
Custom Tabs on
Android. WebViews are explicitly _not_ supported due to the security and usability reasons
explained in Section 8.12 of RFC 8252.
AppAuth also supports the PKCE ("Pixy") extension to OAuth
which was created to secure authorization codes in public clients when custom URI scheme redirects
are used.
To learn more, read this short introduction to OAuth and PKCE on the Formidable blog.
See Usage for example configurations, and the included Example application for
a working sample.
This is the main function to use for authentication. Invoking this function will do the whole login
flow and returns the access token, refresh token and access token expiry date when successful, or it
throws an error when not successful.
``js
import { authorize } from 'react-native-app-auth';
const config = {
issuer: '
clientId: '
redirectUrl: '
scopes: ['
};
const result = await authorize(config);
`
ANDROID This will prefetch the authorization service configuration. Invoking this function is optional
and will speed up calls to authorize. This is only supported on Android.
`js
import { prefetchConfiguration } from 'react-native-app-auth';
const config = {
warmAndPrefetchChrome: true,
issuer: '
clientId: '
redirectUrl: '
scopes: ['
};
prefetchConfiguration(config);
`
#### config
This is your configuration object for the client. The config is passed into each of the methods
with optional overrides.
- issuer - (string) base URI of the authentication server. If no serviceConfiguration (below) is provided, issuer is a mandatory field, so that the configuration can be fetched from the issuer's OIDC discovery endpoint.object
- serviceConfiguration - () you may manually configure token exchange endpoints in cases where the issuer does not support the OIDC discovery protocol, or simply to avoid an additional round trip to fetch the configuration. If no issuer (above) is provided, the service configuration is mandatory.string
- authorizationEndpoint - () _REQUIRED_ fully formed url to the OAuth authorization endpointstring
- tokenEndpoint - () _REQUIRED_ fully formed url to the OAuth token exchange endpointstring
- revocationEndpoint - () fully formed url to the OAuth token revocation endpoint. If you want to be able to revoke a token and no issuer is specified, this field is mandatory.string
- registrationEndpoint - () fully formed url to your OAuth/OpenID Connect registration endpoint. Only necessary for servers that require client registration.string
- endSessionEndpoint - () fully formed url to your OpenID Connect end session endpoint. If you want to be able to end a user's session and no issuer is specified, this field is mandatory.string
- clientId - () _REQUIRED_ your client id on the auth serverstring
- clientSecret - () client secret to pass to token exchange requests. :warning: Read more about client secretsstring
- redirectUrl - () _REQUIRED_ the url that links back to your app with the auth codearray
- scopes - () the scopes for your token, e.g. ['email', 'offline_access'].object
- additionalParameters - () additional parameters that will be passed in the authorization request.additionalParameters: { hello: 'world', foo: 'bar' }
Must be string values! E.g. setting would addhello=world&foo=bar
to the authorization request.string
- clientAuthMethod - () _ANDROID_ Client Authentication Method. Can be either basic (default) for Basic Authentication or post for HTTP POST body Authenticationboolean
- dangerouslyAllowInsecureHttpRequests - () _ANDROID_ whether to allow requests over plain HTTP or with self-signed SSL certificates. :warning: Can be useful for testing against local server, _should not be used in production._ This setting has no effect on iOS; to enable insecure HTTP requests, add a NSExceptionAllowsInsecureHTTPLoads exception to your App Transport Security settings.object
- customHeaders - () _ANDROID_ you can specify custom headers to pass during authorize request and/or token request.{ [key: string]: value }
- authorize - () headers to be passed during authorization request.{ [key: string]: value }
- token - () headers to be passed during token retrieval request.{ [key: string]: value }
- register - () headers to be passed during registration request.{ [key: string]: value }
- additionalHeaders - () _IOS_ you can specify additional headers to be passed for all authorize, refresh, and register requests.boolean
- useNonce - () (default: true) optionally allows not sending the nonce parameter, to support non-compliant providersboolean
- usePKCE - () (default: true) optionally allows not sending the code_challenge parameter and skipping PKCE code verification, to support non-compliant providers.boolean
- skipCodeExchange - () (default: false) just return the authorization response, instead of automatically exchanging the authorization code. This is useful if this exchange needs to be done manually (not client-side)
#### result
This is the result from the auth server:
- accessToken - (string) the access tokenstring
- accessTokenExpirationDate - () the token expiration dateObject
- authorizeAdditionalParameters - () additional url parameters from the authorizationEndpoint response.Object
- tokenAdditionalParameters - () additional url parameters from the tokenEndpoint response.string
- idToken - () the id tokenstring
- refreshToken - () the refresh tokenstring
- tokenType - () the token type, e.g. Bearerstring
- scopes - ([]) the scopes the user has agreed to be grantedstring
- authorizationCode - () the authorization code (only if skipCodeExchange=true)string
- codeVerifier - () the codeVerifier value used for the PKCE exchange (only if both skipCodeExchange=true and usePKCE=true)
This method will refresh the accessToken using the refreshToken. Some auth providers will also give
you a new refreshToken
`js
import { refresh } from 'react-native-app-auth';
const config = {
issuer: '
clientId: '
redirectUrl: '
scopes: ['
};
const result = await refresh(config, {
refreshToken: ,`
});
This method will revoke a token. The tokenToRevoke can be either an accessToken or a refreshToken
`js
import { revoke } from 'react-native-app-auth';
const config = {
issuer: '
clientId: '
redirectUrl: '
scopes: ['
};
const result = await revoke(config, {
tokenToRevoke: ,`
includeBasicAuth: true,
sendClientId: true,
});
This method will logout a user, as per the OpenID Connect RP Initiated Logout specification. It requires an idToken, obtained after successfully authenticating with OpenID Connect, and a URL to redirect back after the logout has been performed.
`js
import { logout } from 'react-native-app-auth';
const config = {
issuer: '
};
const result = await logout(config, {
idToken: '
postLogoutRedirectUrl: '
});
`
This will perform dynamic client registration on the given provider.
If the provider supports dynamic client registration, it will generate a clientId for you to use in subsequent calls to this library.
`js
import { register } from 'react-native-app-auth';
const registerConfig = {
issuer: '
redirectUrls: ['
};
const registerResult = await register(registerConfig);
`
#### registerConfig
- issuer - (string) same as in authorization configobject
- serviceConfiguration - () same as in authorization configarray
- redirectUrls - () _REQUIRED_ specifies all of the redirect urls that your client will use for authenticationarray
- responseTypes - () an array that specifies which OAuth 2.0 response types your client will use. The default value is ['code']array
- grantTypes - () an array that specifies which OAuth 2.0 grant types your client will use. The default value is ['authorization_code']string
- subjectType - () requests a specific subject type for your clientstring
- tokenEndpointAuthMethod () specifies which clientAuthMethod your client will use for authentication. The default value is 'client_secret_basic'object
- additionalParameters - () additional parameters that will be passed in the registration request.additionalParameters: { hello: 'world', foo: 'bar' }
Must be string values! E.g. setting would addhello=world&foo=bar
to the authorization request.boolean
- dangerouslyAllowInsecureHttpRequests - () _ANDROID_ same as in authorization configobject
- customHeaders - () _ANDROID_ same as in authorization config
#### registerResult
This is the result from the auth server
- clientId - (string) the assigned client idstring
- clientIdIssuedAt - () _OPTIONAL_ date string of when the client id was issuedstring
- clientSecret - () _OPTIONAL_ the assigned client secretstring
- clientSecretExpiresAt - () date string of when the client secret expires, which will be provided if clientSecret is provided. If new Date(clientSecretExpiresAt).getTime() === 0, then the secret never expiresstring
- registrationClientUri - () _OPTIONAL_ uri that can be used to perform subsequent operations on the registrationstring
- registrationAccessToken - () token that can be used at the endpoint given by registrationClientUri to perform subsequent operations on the registration. Will be provided if registrationClientUri is provided
`sh`
npm install react-native-app-auth --save
To setup the iOS project, you need to perform three steps:
1. Install native dependencies
2. Register redirect URL scheme
3. Define openURL callback in AppDelegate
##### Install native dependencies
This library depends on the native AppAuth-ios project. To
keep the React Native library agnostic of your dependency management method, the native libraries
are not distributed as part of the bridge.
AppAuth supports three options for dependency management.
1. CocoaPods
`sh`
cd ios
pod install
2. Carthage
With Carthage, add the following line to your Cartfile:
github "openid/AppAuth-iOS" "master"
Then run carthage update --platform iOS.
Drag and drop AppAuth.framework from ios/Carthage/Build/iOS under Frameworks in Xcode.
Add a copy files build step for AppAuth.framework: open Build Phases on Xcode, add a new "Copy Files" phase, choose "Frameworks" as destination, add AppAuth.framework and ensure "Code Sign on Copy" is checked.
3. Static Library
You can also use AppAuth-iOS as a static library. This
requires linking the library and your project and including the headers. Suggested configuration:
1. Create an XCode Workspace.
2. Add AppAuth.xcodeproj to your Workspace.AppAuth-iOS/Source
3. Include libAppAuth as a linked library for your target (in the "General -> Linked Framework and
Libraries" section of your target).
4. Add to your search paths of your target ("Build Settings -> "Header Search
Paths").
##### Register redirect URL scheme
If you intend to support iOS 10 and older, you need to define the supported redirect URL schemes in
your Info.plist as follows:
``
- CFBundleURLName is any globally unique string. A common practice is to use your app identifier.CFBundleURLSchemes
- is an array of URL schemes your app needs to handle. The scheme is the:
beginning of your OAuth Redirect URL, up to the scheme separator () character. E.g. if your redirect uricom.myapp://oauth
is , then the url scheme will is com.myapp.
##### Define openURL callback in AppDelegate
You need to retain the auth session, in order to continue the
authorization flow from the redirect. Follow these steps:
RNAppAuth will call on the given app's delegate via [UIApplication sharedApplication].delegate.RNAppAuth
Furthermore, expects the delegate instance to conform to the protocol RNAppAuthAuthorizationFlowManager.AppDelegate
Make conform to RNAppAuthAuthorizationFlowManager with the following changes to AppDelegate.h:
`diff
+ #import "RNAppAuthAuthorizationFlowManager.h"
- @interface AppDelegate : UIResponder
+ @interface AppDelegate : UIResponder
+ @property(nonatomic, weak)id
`
Add the following code to AppDelegate.m (to support iOS <= 10 and React Navigation deep linking)
`diff`
+ - (BOOL)application:(UIApplication )app openURL:(NSURL )url options:(NSDictionary
+ if ([self.authorizationFlowManagerDelegate resumeExternalUserAgentFlowWithURL:url]) {
+ return YES;
+ }
+ return [RCTLinkingManager application:app openURL:url options:options];
+ }
If you want to support universal links, add the following to AppDelegate.m under continueUserActivity
`diff`
+ if ([userActivity.activityType isEqualToString:NSUserActivityTypeBrowsingWeb]) {
+ if (self.authorizationFlowManagerDelegate) {
+ BOOL resumableAuth = [self.authorizationFlowManagerDelegate resumeExternalUserAgentFlowWithURL:userActivity.webpageURL];
+ if (resumableAuth) {
+ return YES;
+ }
+ }
+ }
#### Integration of the library with a Swift iOS project
The approach mentioned should work with Swift. In this case one should make AppDelegate conform to RNAppAuthAuthorizationFlowManager. Note that this is not tested/guaranteed by the maintainers.
Steps:
1. swift-Bridging-Header.h should include a reference to #import "RNAppAuthAuthorizationFlowManager.h, like so:
`h`
#import
#import
#import
#import
#import "RNAppAuthAuthorizationFlowManager.h" // <-- Add this header
#if DEBUG
#import
// etc...
2. AppDelegate.swift should implement the RNAppAuthorizationFlowManager protocol and have a handler for url deep linking. The result should look something like this:
`swift`
@UIApplicationMain
class AppDelegate: UIApplicationDelegate, RNAppAuthAuthorizationFlowManager { //<-- note the additional RNAppAuthAuthorizationFlowManager protocol
public weak var authorizationFlowManagerDelegate: RNAppAuthAuthorizationFlowManagerDelegate? // <-- this property is required by the protocol
//"open url" delegate function for managing deep linking needs to call the resumeExternalUserAgentFlowWithURL method
func application(
_ app: UIApplication,
open url: URL,
options: [UIApplicationOpenURLOptionsKey: Any] = [:]) -> Bool {
return authorizationFlowManagerDelegate?.resumeExternalUserAgentFlowWithURL(with: url) ?? false
}
}
Note: for RN >= 0.57, you will get a warning about compile being obsolete. To get rid of this warning, use patch-package to replace compile with implementation as in this PR - we're not deploying this right now, because it would break the build for RN < 57.
To setup the Android project, you need to add redirect scheme manifest placeholder:
To capture the authorization redirect,
add the following property to the defaultConfig in android/app/build.gradle:
``
android {
defaultConfig {
manifestPlaceholders = [
appAuthRedirectScheme: 'io.identityserver.demo'
]
}
}
The scheme is the beginning of your OAuth Redirect URL, up to the scheme separator (:) character. E.g. if your redirect uricom.myapp://oauth
is , then the url scheme will is com.myapp. The scheme must be in lowercase.
NOTE: When integrating with React Navigation deep linking, be sure to make this scheme (and the scheme in the config's redirectUrl) unique from the scheme defined in the deep linking intent-filter. E.g. if the scheme in your intent-filter is set to com.myapp, then update the above scheme/redirectUrl to be com.myapp.auth as seen here.
`javascript
import { authorize } from 'react-native-app-auth';
// base config
const config = {
issuer: '
clientId: '
redirectUrl: '
scopes: ['
};
// use the client to make the auth request and receive the authState
try {
const result = await authorize(config);
// result includes accessToken, accessTokenExpirationDate and refreshToken
} catch (error) {
console.log(error);
}
`
Values are in the code field of the rejected Error object.
- OAuth Authorization error codes
- OAuth Access Token error codes
- OpendID Connect Registration error codes
- service_configuration_fetch_error - could not fetch the service configurationauthentication_failed
- - user authentication failedtoken_refresh_failed
- - could not exchange the refresh token for a new JWTregistration_failed
- - could not registerbrowser_not_found
- (Android only) - no suitable browser installed
#### Note about client secrets
Some authentication providers, including examples cited below, require you to provide a client secret. The authors of the AppAuth library
> strongly recommend you avoid using static client secrets in your native applications whenever possible. Client secrets derived via a dynamic client registration are safe to use, but static client secrets can be easily extracted from your apps and allow others to impersonate your app and steal user data. If client secrets must be used by the OAuth2 provider you are integrating with, we strongly recommend performing the code exchange step on your backend, where the client secret can be kept hidden.
Having said this, in some cases using client secrets is unavoidable. In these cases, a clientSecret parameter can be provided to authorize/refresh` calls when performing a token request.
#### Token Storage
Recommendations on secure token storage can be found here.
#### Maintenance Status
Active: Formidable is actively working on this project, and we expect to continue for work for the foreseeable future. Bug reports, feature requests and pull requests are welcome.
[maintenance-image]: https://img.shields.io/badge/maintenance-active-green.svg