Webview
Integrating Verisoul in mobile app webviews
This integration method is deprecated
The webview integration approach is no longer being maintained. Please use our native Mobile SDKs for better performance, security, and signal collection:
Verisoul can be integrated into mobile applications using webviews. This approach allows you to implement fraud prevention in React Native, Native iOS, and Native Android apps without requiring a full native SDK integration.
Overview
To use Verisoul in mobile apps, you’ll need to run the client SDK in a native webview. The webview can remain completely invisible to the user while still collecting the necessary signals for fraud prevention.
To run the app a Verisoul Project ID is required. Schedule a call here to get started.
Usage
The workflow follows the same pattern as the standard web integration except that you will need to listen for a session_id from a native webview.
1. Open the webview
Open a native webview and navigate to the following Verisoul URL with a valid project_id and env
iOS (Swift)
Android (Kotlin)
2. Listen for session_id
Listen for a message from the webview that includes the session_id. The session_id is required to authenticate an account so you’ll need to pass that to your backend in order to call the Verisoul API.
iOS (Swift)
Android (Kotlin)
3. Close the webview
Upon retrieving the session_id and authenticating the session you can close the webview.