Deep Link with React Native App
While create the session ID, define the URL
Create New Session ID
Path Parameters
Name
Type
Description
Request Body
Name
Type
Description
{
"session_key": "TOA-3DFDC8Z64V",
"status": "IDLE",
"active": true,
"redirect_url": "pave://",
"start_date": "September 17th, 2021"
}Setting up for iOS
Adding a URL scheme

Update AppDelegate.m
Setting up for Android
Add intent filters for incoming links
Handle URLs
1. If the app is already open, the app is foregrounded and a Linking 'url' event is fired
2. If the app is not already open, it is opened and the url is passed in as the initialURL
Example
Result

Test
iOS

Android
Last updated