React Native SDK
How to integrate with a React Native app
This guide provides instructions to integrate authgear with a react native app. Supported platforms include:
Android
iOS
Setup Application in Authgear
Signup for an account in https://portal.authgearapps.com/ and create a project. Or you can use your self-deployed Authgear.
After that, we will need to create an application in Authgear.
Create an application
Go to "Applications".
Click "Add Application" in the top right corner
Input the name of your application, this is for reference only
Defining a custom scheme that the users will be redirected back to your app after they have authenticated with Authgear. Add the URI to "Redirect URIs". (e.g. com.myapp://host/path).
Click "Save" and keep the client id. You can also obtain the client id from the list later.
If you want to validate JWT access token in your server, select Issue JWT as access token. If you will forward incoming requests to Authgear Resolver Endpoint for authentication, leave this unchecked. See comparisons in Backend Integration.
Create a React Native app
Follow the documentation of React Native to see how you can create a new React Native app.
Install the SDK
Platform Integration
To finish the integration, setup the app to handle the redirectURI specified in the application. This part requires platform specific integration.
Android
Add the following activity entry to the AndroidManifest.xml
of your app. The intent system would dispatch the redirect URI to OAuthRedirectActivity
and the sdk would handle the rest.
iOS
Declare URL Handling in Info.plist
In Info.plist
, add the matching redirect URI.
Insert the SDK Integration Code
In AppDelegate.m
, add the following code snippet.
Try authenticate
Add this code to your react native app. This snippet configures authgear to connect to an authgear server deployed at endpoint
with the client you have just setup via clientID
, opens a browser for authorization, and then upon success redirects to the app via the redirectURI
specified.
Using the Access Token in HTTP Requests
To include the access token to the HTTP requests to your application server, there are two ways to achieve this.
Option 1: Using fetch function provided by Authgear SDK
Authgear SDK provides the fetch
function for you to call your application server. The fetch
function will include the Authorization header in your application request, and handle refresh access token automatically. authgear.fetch
implement fetch.
Option 2: Add the access token to your HTTP
You can access the access token through authgear.accessToken
. Call refreshAccessTokenIfNeeded
every time before using the access token, the function will check and make the network call only if the access token has expired. Include the access token into the Authorization header of your application request.
Logout
To log out the user from the current app session, you need to invoke thelogout
function.
Next steps
To protect your application server from unauthorized access. You will need to integrate your backend with Authgear.
Last updated
Was this helpful?