- Overview
- Getting started
- Handling callbacks
- Removing the SDK
- Initialization options
- Customizing the SDK
- Creating checks
- User Analytics
- Premium Enterprise Features
- Going live
- Accessibility
- TypeScript
- More information
The Onfido Web SDK provides a set of components for JavaScript applications to capture identity documents and selfie photos, videos, and motion captures for the purpose of identity verification.
The SDK offers a number of benefits to help you create the best identity verification experience for your customers:
- Carefully designed UI to guide your customers through the entire capture process for photos, videos, or motion captures
- Modular design to help you seamlessly integrate the capture process for photos, videos, or motion captures into your application flow
- Advanced image quality detection technology to ensure the quality of the captured images meets the requirement of the Onfido identity verification process, guaranteeing the best success rate
- Direct image upload to the Onfido service, to simplify integration
The following content assumes you're using our API v3 versions for backend calls. If you are currently using API v2
please refer to this migration guide for more information.
ℹ️ If you are integrating using Onfido Studio please see out Studio integration guide.
In order to start integrating, you'll need an API token.
You can use our sandbox environment to test your integration. To use the sandbox, you'll need to generate a sandbox API token in your Onfido Dashboard.
Onfido offers region-specific environments. Refer to the Regions section in the API documentation for token format and API base URL information.
To create an applicant from your backend server, make request to the 'create applicant' endpoint, using a valid API token.
first_name
and last_name
.
$ curl https://api.onfido.com/v3/applicants \
-H 'Authorization: Token token=<YOUR_API_TOKEN>' \
-d 'first_name=John' \
-d 'last_name=Smith'
The JSON response will contain an id
field containing an UUID that identifies the applicant. Once you pass the applicant ID to the SDK, documents, photos, videos, and motion captures uploaded by that instance of the SDK will be associated with that applicant.
The SDK is authenticated using SDK tokens. Each authenticated instance of the SDK will correspond to a single Onfido applicant. You’ll need to generate and include a new token each time you initialize the Web SDK.
To generate an SDK token, make a request to the 'generate SDK token' endpoint, including the applicant ID and a valid referrer.
$ curl https://api.onfido.com/v3/sdk_token \
-H 'Authorization: Token token=<YOUR_API_TOKEN>' \
-F 'applicant_id=<APPLICANT_ID>' \
-F 'referrer=<REFERRER_PATTERN>'
Parameter | Notes |
---|---|
applicant_id |
required Specifies the applicant for the SDK instance |
referrer |
required The referrer URL pattern |
The referrer argument specifies the URL of the web page where the Web SDK will be used. The referrer sent by the browser must match the referrer URL pattern in the SDK token for the SDK to successfully authenticate.
The referrer pattern guarantees that other malicious websites cannot reuse the SDK token in case it is lost. You can read more about referrer policy in Mozilla's documentation.
Referer
header be sent. If your policy does not allow this (e.g.
Referrer-Policy: no-referrer
), then you'll receive a 401 bad_referrer
error when trying to use the Web SDK.
Permitted referrer patterns are as follows:
Section | Format | Example |
---|---|---|
Referrer | scheme://host/path |
https://*.<DOMAIN>/<PATH>/* |
Scheme | * or http or https |
https |
Host | * or *. then any char except / and * |
*.<DOMAIN> |
Path | Any char or none | <PATH>/* |
An example of a valid referrer is https://*.example.com/example_page/*
.
You can either:
- import directly into your HTML page
- use npm
- use our CDN
You can include the library as a regular script tag on your page:
<script src="dist/onfido.min.js"></script>
And the CSS styles:
<link rel="stylesheet" href="dist/style.css" />
You can see a simple example using script tags.
You can import the library as a module into your own JS build system (tested with Webpack):
$ npm install --save onfido-sdk-ui
// ES6 module import
import { init } from 'onfido-sdk-ui'
// commonjs style require
var Onfido = require('onfido-sdk-ui')
The CSS style will be included inline with the JS code when the library is imported.
You can see an example app using npm style import.
To decrease the size of your production bundle, you can use the split version of the library:
import { init } from 'onfido-sdk-ui/split'
import 'onfido-sdk-ui/split/css'
Alternatively, you can use hosted versions of files above from our CDN such as:
<!-- Replace "<version>" with the actual version you want to use, example: 9.0.0 -->
<script src="https://assets.onfido.com/web-sdk-releases/<version>/onfido.min.js"></script>
<link
href="https://assets.onfido.com/web-sdk-releases/<version>/style.css"
rel="stylesheet"
/>
Add an empty HTML element at the bottom of your page for the modal interface to mount itself on.
<div id="onfido-mount"></div>
You can now initialize the SDK, using the SDK token.
Onfido.init({
token: '<YOUR_SDK_TOKEN>',
containerId: 'onfido-mount',
containerEl: <div id="root" />, //ALTERNATIVE to `containerId`
onComplete: function (data) {
console.log('everything is complete')
},
steps: ['welcome', 'poa', 'document', 'face', 'complete'],
})
Parameter | Format | Notes |
---|---|---|
token |
string | required Your Web SDK token |
containerId |
string | optional A string containing the ID of the container element that the UI will mount to. This must be an empty element. The default is onfido-mount . Alternatively, if your integration requires it, you can pass in the container element instead. Note that if containerEl is provided, then containerId will be ignored |
onComplete |
function | optional A callback function that executes after the applicant's document and face have both been captured and uploaded successfully |
steps |
string or object | List of different steps corresponding to parts of the process the user will be presented with |
Callback that fires when both the document and face have been successfully captured and uploaded. You can then trigger your backend to create a check, using the associated applicant ID.
Example onComplete
callback:
Onfido.init({
token: '<YOUR_SDK_TOKEN>',
containerId: 'onfido-mount',
onComplete: function (data) {
console.log('everything is complete')
},
})
data
is an object that contains properties of the document and face images captured during the SDK flow.
For two-sided documents like driving_licence
and national_identity_card
, the object will also contain a document_back
property representing the reverse side.
For the face step an object is returned with the variant
used for the face capture,'standard' | 'video' | 'motion'
. This informs whether to specify a facial_similarity_photo
, facial_similarity_video
, or facial_similarity_motion
report during check creation.
{
"document_front": {
"id": "<DOCUMENT_ID_FRONT>",
"type": "passport",
"side": "front"
},
"face": {
"id": "<FACE_ID>",
"variant": "standard"
},
"document_back": {
"id": "<DOCUMENT_ID_BACK>",
"type": "driving_licence",
"side": "back"
},
"poa": {
"id": "<POA_DOCUMENT_ID>"
"type": "utility_bill"
}
}
Callback that fires when an error occurs. The callback returns the following error types:
-
exception
This will be returned for the following errors:- timeout and server errors
- authorization
- invalid token
- missing data in
onComplete
callback
This data can be used for debugging purposes.
{
type: "exception",
message: "The request could not be understood by the server, please check your request is correctly formatted"
}
expired_token
This error will be returned when a token has expired. This error type can be used to provide a new token at runtime.
{
type: "expired_token",
message: "The token has expired, please request a new one"
}
Callback that fires when the user abandons the flow without completing it.
The callback returns a string with the reason for leaving. For example, 'USER_CONSENT_DENIED'
is returned when a user exits the flow because they declined the consent prompt.
Onfido.init({
token: '<YOUR_SDK_TOKEN>',
containerId: 'onfido-mount',
onUserExit: function (userExitCode) {
console.log(userExitCode)
},
})
Callback that fires when the user attempts to close the modal.
You can then decide to close the modal or keep it open by changing the property isModalOpen
.
If you have embedded the SDK inside a single page app, you can call the tearDown
function to remove the SDK completely from the current webpage. It will reset the state and you can safely re-initialize the SDK inside the same webpage later on.
onfidoOut = Onfido.init({...})
...
onfidoOut.tearDown()
-
token {String} required
A JWT is required in order to authorize with our WebSocket endpoint. If one isn’t present, an exception will be thrown.
-
useModal {Boolean} optional
Turns the SDK into a modal, which fades the background and puts the SDK into a contained box. The default value is
false
.<script> var onfido = {} function triggerOnfido() { onfido = Onfido.init({ useModal: true, isModalOpen: true, onModalRequestClose: function() { // Update options with the state of the modal onfido.setOptions({isModalOpen: false}) }, token: '<YOUR_SDK_TOKEN>', onComplete: function(data) { // callback for when everything is complete console.log("everything is complete") } }); }; </script> <body> <!-- Use a button to trigger the Onfido SDK --> <button onClick="triggerOnfido()">Verify identity</button> <div id='onfido-mount'></div> </body>
-
isModalOpen {Boolean} optional
Defines whether the modal is open or closed, if
useModal
is set totrue
. The default value isfalse
.To change the state of the modal after calling
init()
you need to usesetOptions()
. -
shouldCloseOnOverlayClick {Boolean} optional
If
useModal
is set totrue
, by default the user can close the SDK by clicking on the close button or on the background overlay. You can disable the user's ability to close the SDK by clicking the background overlay through settingshouldCloseOnOverlayClick
tofalse
. The default value istrue
. -
autoFocusOnInitialScreenTitle {Boolean} optional
Sets the SDK to auto focus on the initial screen's title. By default the SDK will auto focus on every screen's title. When disabled, auto focus will not be applied for the initial screen's title. The SDK will still auto focus to all subsequent screens' titles as the user goes through the steps. The default value is
true
. -
containerId {String} optional
A string of the ID of the container element that the UI will mount to. This needs to be an empty element. The default ID is
onfido-mount
. If your integration needs to pass the container element itself, usecontainerEl
as described next. -
containerEl {Element} optional
The container element that the UI will mount to. This needs to be an empty element. This can be used as an alternative to passing in the container ID string previously described for
containerId
. Note that ifcontainerEl
is provided, thencontainerId
will be ignored. -
smsNumberCountryCode {String} optional
You can change the default country for the SMS number input by passing the
smsNumberCountryCode
option when the SDK is initialized. The value should be a string containing a 2-character ISO Country code. If empty, the SMS number country code will default toGB
.smsNumberCountryCode: 'US'
-
userDetails {Object} optional
The following user details can be specified ahead of time, so that the user doesn't need to provide the information themselves:
smsNumber
(optional) : The user's mobile number, which can be used for sending SMS messages to the user, for example, when a user requests to use their mobile devices to take photos. The value should be a string containing the mobile number with a country code.
userDetails: { smsNumber: '+447500123456' }
-
steps {List} optional
The list of different steps to be shown in the SDK flow and their custom options. Each step can either be specified as a string (when no customization is required) or an object (when customization is required).
steps: [ { type: 'welcome', options: { title: 'Open your new bank account', }, }, 'document', 'face', ]
See flow customization for details of the custom options for each step.
The Web SDK has multiple customizable features that provide flexibility, while also being easy to integrate. You can also read our SDK customization guide.
-
customUI {Object} optional
Please refer to the SDK UI customization documentation for details of the supported UI customization options that can be set in this property.
-
language {String || Object} optional
You can customize the language displayed on the SDK by passing a string or object. If
language
is not present we will use the browser's language setting. If the browser's language is not supported, we will default to English (en_US
).The SDK supports and maintains the following languages. These can be implemented directly inside the SDK by passing the
language
option as a string containing the supported language tag.Language Locale Tag Direction Arabic "ar" rtl Armenian "hy" Bulgarian "bg" Chinese (Simplified) "zh_CN" Chinese (Traditional) "zh_TW" Croatian "hr" Czech "cs" Danish "da" Dutch "nl" English (United Kingdom) "en_GB" English (United States) "en_US" Estonian "et" Finnish "fi" French "fr" French (Canadian) "fr_CA" German "de" Greek "el" Hebrew "he" rtl Hindi "hi" Hungarian "hu" Indonesian "id" Italian "it" Japanese "ja" Korean "ko" Latvian "lv" Lithuanian "lt" Malay "ms" Norwegian "no" Persian "fa" rtl Polish "pl" Portuguese "pt" Portuguese (Brazil) "pt_BR" Romanian "ro" Russian "ru" Serbian "sr" Slovak "sk" Slovenian "sl" Spanish "es" Spanish (Latin America) "es_419" Swedish "sv" Thai "th" Turkish "tr" Ukrainian "uk" Vietnamese "vi" Example:
language: 'pt_BR' | 'es'
The SDK can also be displayed in a custom language for locales that Onfido does not currently support. To implement this, pass an object containing the following keys:
Key Description Notes locale
required
A locale tag.This is required when providing phrases for an unsupported language. You can also use this to partially customize the strings of a supported language (e.g. Spanish), by passing a supported language locale tag (e.g. es_ES
). For missing keys, the values will be displayed in the language specified within the locale tag if supported, otherwise they will be displayed in English. The locale tag is also used to override the language of the SMS body for the cross device feature. This feature is owned by Onfido and is currently only supports English, Spanish, French and German.direction
optional
Direction of readingSet the direction of reading, either left-to-right or right-to-left. Values: ltr
orrtl
. Default:ltr
phrases
required
An object containing the keys you want to override and the new values.The keys can be found in src/locales/en_US/en_US.json
. They can be passed as a nested object or as a string using the dot notation for nested values. See the examples below.mobilePhrases
optional
An object containing the keys you want to override and the new values.The values specified within this object are only visible on mobile devices. Please refer to the mobilePhrases
property insrc/locales/en_US/en_US.json
. Note: support for standalonemobilePhrases
key will be deprecated soon. Consider nesting it insidephrases
if applicable.language: { locale: 'en_US', direction: 'ltr', phrases: { welcome: { title: 'My custom title' } }, mobilePhrases: { 'capture.driving_licence.instructions': 'This string will only appear on mobile' } }
This step is the introduction screen of the SDK. It displays a summary of the capture steps the user will pass through. These steps can be specified to match the flow required. This is an optional screen.
The custom options are:
title
(string)descriptions
([string])nextButton
(string)
In the Document Capture step, an end user can select the issuing country and document type before capture.
This information is used to optimize the capture experience, as well as inform the end user about which documents they are allowed to use.
This selection screen is optional, and will be automatically hidden where the end user is not required to indicate which document will be captured.
By default, when the selection screen is shown, the country selection will be empty.
The above images are for web SDK versions 8.3.0+. For previous designs, see previous SDK reference guides
You can specify allowed issuing countries and document types for the document capture step in one of three ways:
- If you are using Onfido Studio, this is configured within a Document Capture task, documented in the Studio Product Guide
- Otherwise, for Onfido Classic you can set this globally in your Dashboard (recommended), or hard code it into your SDK integration. Both of these options are documented below
Configuring the issuing country and document type selection step using your Dashboard is the recommended method of customization (available from Web SDK version 10.0.0 onwards) as this configuration is also applied to your Document Reports. Any document that has been uploaded by an end user against your guidance will result in a Document Report sub-result of "rejected" and be flagged as Image Integrity
> Supported Document
.
We will be rolling out Dashboard-based configuration of allowed documents soon. In the meantime, contact [email protected] or your Customer Support Manager to request access to this feature.
- Open the Accounts tab on your Dashboard, then click Supported Documents
- You will be presented with a list of all available countries and their associated supported documents. Make your selection, then click Save Change
Please note:
- Hard coding any document type and issuing country configuration in your SDK integration will fully override the Dashboard-based settings
- Currently, only passport, national ID card, driving licence and residence permit are visible for document selection by the end user in the SDK. If you nominate other document types in your Dashboard (visa, for example), these will not be displayed in the user interface
- If you need to add other document types to the document selection screen, you can mitigate this limitation in the near-term, using the Custom Document feature
- If for any reason the configuration fails or is not enabled, the SDK will fallback to display the selection screen for the complete list of documents supported within the selection screens
If you want to use your own custom document selection UI instead of displaying the Onfido document selection screen, you will need to specify the document details during SDK initialization.
The document selection screen will be skipped automatically when the single document type is specified.
The SDK will accept the following:
- The Document Type is required. This controls fundamental SDK document capture behaviour
- The Country is optional, but recommended. This enables any optimizations the SDK may have for this specific document issued by this country
- The Document Format is optional, and only accepted for French driving licence, Italian national identity card and South African national identity card This defaults to Card, representing modern forms of these documents. If the end user indicates that they have an older, paper version of one of these documents, use Folded to ensure an optimized capture experience
The custom options are:
-
documentTypes
(object)The list of document types visible to the user can be filtered by using the
documentTypes
option. WhendocumentTypes
is not defined, the default value for each document type istrue
. WhendocumentTypes
is defined, it will override the default values. Absent types are consideredfalse
. -
country
(string)Document country can be specified per document type. The
country
configuration for a document type allows you to specify the issuing country of the document as a string containing a 3-letter ISO 3166-1 alpha-3 country code.If
documentTypes
only includes one document type with a country value, users will not see the document selection screen and instead will be taken directly to the capture screen.⚠️ Note: thenull
value is deprecated and has no effect.⚠️ Note: Passports have the same format worldwide so the SDK will not show the country selection screen even if they are not restricted by country (e.g. passport: true).
For example, if you want to allow only Spanish (ESP) driving licences, and national identity cards and residence permits for all countries:
{
"steps": [
"welcome",
{
"type": "document",
"options": {
"documentTypes": {
"driving_licence": {
"country": "ESP"
},
"national_identity_card": true,
"residence_permit": true
}
}
},
"complete"
]
}
In the Web SDK, it is also possible to remove the country selection entirely from the document selection screen. Set the hideCountrySelection option to true to show all supported document types in a single list with no country selection. Note that, without capturing the country information, the SDK is unable to apply optimized capture experiences for specific documents, and we are not able to perform fine-grained analytics based on country selection.
See more details in the Technical Reference here.
Note: You may still wish to configure the Dashboard-based approach to ensure that the Document Report also rejects any document that has been uploaded by an end user against your guidance.
The Web SDK offers a cross-device flow where desktop users are directed to continue on their mobile device browser to complete the capture process, providing vastly improved image quality versus a typical desktop webcam and an increased likelihood of live capture.
The user is offered a QR code to scan with their camera app, which then resumes the flow on their mobile device browser. For users that cannot scan a QR code, a Copy Link feature and Send Link with SMS feature are also available. Regardless of the cross-device method, the secure URL is unique to this session.
When a user switches to the SDK's cross-device flow, they will see an introductory screen when the SDK client loads on their mobile browser. At the end of the capture process, users will be redirected back to their desktop to complete the SDK flow.
It is recommended to enforce the cross-device flow. The option is available in Onfido Studio, configurable in the workflow builder, and in the Classic integration, configured as follows:
- When configured, forceCrossDevice makes the cross-device flow mandatory for all users who will be required to complete the capture process on a mobile device browser
- The forceCrossDevice functionality can be configured for both the Document capture and Proof of Address verification steps
- forceCrossDevice cannot be configured for Face captures
When a user switches to the SDK's cross-device flow, they will see an introductory screen when the SDK client loads on their mobile browser. This screen notifies the user that this is part of a flow initiated on a desktop browser when they open the cross-device link on their mobile browser.
The following optional customizations are available for the introductory screen:
-
Specify company or product name
crossDeviceClientIntroProductName
- You can customize the text by adding your company or product name to the subtitle
- We recommend that you set this so that the user can identify the purpose of the flow when they open the cross-device link. This is also an opportunity to include your branding in the SDK flow
-
Display company or product logo
crossDeviceClientIntroProductLogoSrc
- You can customize the icon by adding your company or product logo to be displayed instead of the default SDK icon image
- We recommend that you set this so that the user can identify the purpose of the flow when they open the cross-device link. This is also an opportunity to include your branding in the SDK flow
- The image used should be no more than 144px in both height and width
The SDK will attempt to load an optimized camera UI to take a live photo. When this is not possible (because of an unsupported browser or mobile devices with no camera), the user will be presented with an HTML5 File Input. Set uploadFallback
to false
to disable this fallback feature and ensure live capture. Note that disabling uploadFallback
will prevent users with an unsupported browser or a mobile device with no camera from continuing.
-
genericDocumentTypes
(object)You can add generic documents that are not supported by Onfido. They will be displayed at the bottom of the built-in document types.
genericDocumentTypes: [ { id: 'my_single_side_document', title: 'My single side document', subTitle: 'Details about my document', country: 'ALB', pages: 1, }, { id: 'my_two_sides_document', title: 'My two sides document', subTitle: 'Details about my document', country: 'ALB', pages: 2, }, ]
In the same way to other document types, you can skip the document selection screen by adding a single
generic_document
object which references one of your generic documents declared ingenericDocumentTypes
.documentTypes: { generic_document: { id: 'my_single_side_document', } }
This is the Proof of Address capture step. Users will be asked to select the issuing country of their document, the document type, and to provide images of their selected document. They will also have a chance to check the quality of the images before confirming. There are no custom options for this step.
This is the face capture step. Users will be asked to capture their face in the form of a photo, a video, or a motion capture. For photos and videos, they will also have a chance to check its quality before confirming.
The custom options are:
-
requestedVariant
(string - default:standard
)A preferred variant can be requested for this step, by passing the option
requestedVariant: 'standard' | 'video' | 'motion'
. IfrequestedVariant
is:standard
: a photo will be captured;video
: a video will be captured;motion
: a motion capture will be captured.
The SDK will try to fulfil this request depending on camera availability, device capabilities, and browser support on the user's device:
- if a video cannot be taken, the face step can be configured to fallback to the
standard
variant (seephotoCaptureFallback
); - if Motion is not available, the face step can be configured to fallback to either
video
orstandard
variants (seemotionFallbackVariant
).
If the SDK is initialized with the
requestedVariant
option for the face step, make sure you use the data returned in theonComplete
callback to request the correct report when creating a check. -
uploadFallback
(boolean - default:true
)By default, the SDK will attempt to open an optimised camera UI for the user to take a live photo or video. When this is not possible (because of an unsupported browser or mobile devices with no camera), by default the user will be presented with an HTML5 File Input upload because of
uploadFallback
. In this scenario, they will be able to use their mobile device's default camera application to take a photo, but will not be presented with an optimised camera UI.This method does not guarantee live capture, because certain mobile device browsers and camera applications may also allow uploads from the user's gallery of photos.
⚠️ Warning: If the mobile device does not have a camera or lacks camera browser support the user will not be able to complete the flow ifuploadFallback
is set tofalse
.options: { requestedVariant: 'standard' | 'video', uploadFallback: false }
-
useMultipleSelfieCapture
(boolean - default:true
)When enabled, this feature allows the SDK to take additional selfie snapshots to help improve face similarity check accuracy. When disabled, only one selfie photo will be taken.
-
photoCaptureFallback
(boolean - default:true
)This feature only applies to the Video variant.
When enabled, it allows end-users to capture a selfie if their browser does not support MediaRecorder. When disabled, we will return an unsupported browser error if the end-user browser doesn’t support MediaRecorder.
-
motionFallbackVariant
(string - default:undefined
)This feature only applies to the Motion variant and it allows to specify which face capture variant users will fallback to if Motion is not available on the end-user device due to MediaRecorder not being supported or to limited device capabilities.
If no variant is specified, then users on unsupported devices will receive an unsupported browser error instead.
The following example shows how to configure
motionFallbackVariant
to allow users on unsupported devices to fallback to Selfie:options: { requestedVariant: 'motion', motionFallbackVariant: 'standard' }
The following example shows how to configure
motionFallbackVariant
to allow users on unsupported devices to fallback to Video:options: { requestedVariant: 'motion', motionFallbackVariant: 'video' }
-
recordMotionAudio
(boolean - default:false
)When enabled, and the requested variant is
motion
, this feature allows Motion to record the user background audio.
Please note that if a camera can’t be detected, we forward the user to the cross-device flow in order to attempt to capture in another device.
This is the final completion step. The screen displays a completion message to signal the next steps to the user. This is an optional screen. The custom options are:
message
(string)submessage
(string)
When a user switches to the SDK's Cross Device flow, they will see an introductory screen when the SDK client loads on their mobile browser.
-
crossDeviceClientIntroProductName {String} optional
You can customize the text by adding your company or product name to the subtitle with this option. We recommend that you set this, alongside the corresponding
crossDeviceClientIntroProductLogoSrc
below, to notify the user that this is part of a flow initiated on a desktop or laptop browser when they open the Cross Device link on their mobile browser. This is also an opportunity to include your branding in the SDK flow.Onfido.init({ token: '<YOUR_SDK_TOKEN>', crossDeviceClientIntroProductName: 'for a [COMPANY/PRODUCT NAME] loan', })
-
crossDeviceClientIntroProductLogoSrc {String} optional
You can customize the icon by adding your company or product logo to be displayed instead of the default SDK icon image with this option. We recommend that you set this, alongside the corresponding
crossDeviceClientIntroProductName
above, to notify the user that this is part of a flow initiated on a desktop browser when they open the Cross Device link on their mobile browser. This is also an opportunity to include your branding in the SDK flow. The image used should be no more than 144px in both height and width.Onfido.init({ token: '<YOUR_SDK_TOKEN>', crossDeviceClientIntroProductLogoSrc: 'path://to/logo/image/file', })
It's possible to change the options initialized at runtime:
onfidoOut = Onfido.init({...})
...
//Change the title of the welcome screen
onfidoOut.setOptions({
steps: [
{
type:'welcome',
options:{title:"New title!"}
},
'document',
'face',
'complete'
]
});
...
//replace the jwt token
onfidoOut.setOptions({ token: '<YOUR_NEW_SDK_TOKEN>' });
...
//Open the modal
onfidoOut.setOptions({ isModalOpen:true });
The new options will be shallowly merged with the previous one, so you can only pass the differences to a get a new flow.
The SDK is responsible for the capture of identity documents and selfie photos, videos, and motion captures. It doesn't perform any checks against the Onfido API. You need to access the Onfido API in order to manage applicants and perform checks.
For a walkthrough of how to create a document and facial similarity check using the Web SDK read our Web SDK Quick Start guide.
For further details on how to create a check with the Onfido API.
Note: If you are testing with a sandbox token, please be aware that the results are pre-determined. You can learn more about sandbox responses.
Note: If you are currently using API v2
please refer to this migration guide for more information.
Reports may not always return actual results straightaway.
You can set up webhooks to be notified upon completion of a check or report, or both.
The SDK allows you to track a user's journey through the verification process via a dispatched event. This gives insight into how your users make use of the SDK screens.
In order to track a user's progress through the SDK an EventListener
must be added that listens for UserAnalyticsEvent
events. This can be done anywhere within your application.
For example:
addEventListener('userAnalyticsEvent', (event) => /*Your code here*/);
The code inside of the EventListener
will now be called when a particular event is triggered. For a full list of events see tracked events.
The parameter being passed in is an Event
object. The details related to the user analytics event can be found at the path event.detail
and are as follows:
eventName |
string Indicates the type of event. This will always be returned as "Screen" as each tracked event is a user visiting a screen. |
properties |
map object Contains the specific details of an event. For example, the name of the screen visited. |
You can use the data to monitor how many users reach each screen in your flow. You can do this by storing the number of users that reach each screen and comparing that to the number of users who reached the Welcome
screen.
Below is the list of potential events currently being tracked by the hook:
WELCOME - User reached the "Welcome" screen
USER_CONSENT - User reached the "User Consent" screen
DOCUMENT_TYPE_SELECT - User reached the "Choose document" screen where the type of document to upload can be selected
ID_DOCUMENT_COUNTRY_SELECT - User reached the "Select issuing country" screen where the the appropriate issuing country can be searched for and selected if supported
CROSS_DEVICE_INTRO - User reached the cross device "Continue on your phone" intro screen
CROSS_DEVICE_GET_LINK - User reached the cross device "Get your secure link" screen
CROSS_DEVICE_START - User reached the "document capture" screen on mobile after visiting the cross device link
DOCUMENT_CAPTURE_FRONT - User reached the "document capture" screen for the front side (for one-sided or two-sided document)
DOCUMENT_CAPTURE_BACK - User reached the "document capture" screen for the back side (for two-sided document)
DOCUMENT_CAPTURE_CONFIRMATION_FRONT - User reached the "document confirmation" screen for the front side (for one-sided or two-sided document)
DOCUMENT_CAPTURE_CONFIRMATION_BACK - User reached the "document confirmation" screen for the back side (for two-sided document)
FACIAL_INTRO - User reached the "selfie intro" screen
FACIAL_CAPTURE - User reached the "selfie capture" screen
FACIAL_CAPTURE_CONFIRMATION - User reached the "selfie confirmation" screen
VIDEO_FACIAL_INTRO - User reached the "face video intro" screen
VIDEO_FACIAL_CAPTURE_STEP_1 - User reached the 1st challenge during "face video capture", challenge_type can be found in eventProperties
VIDEO_FACIAL_CAPTURE_STEP_2 - User reached the 2nd challenge during "face video capture", challenge_type can be found in eventProperties
UPLOAD - User's file is uploading
Please refer to the Premium Enterprise Features documentation for details of the following features offered to our Enterprise customers:
- Customized API Requests
- Callbacks Overview
- Cross device URL
The above features must be enabled for your account before they can be used. For more information, please contact your Onfido Solution Engineer or Customer Success Manager.
Once you are happy with your integration and are ready to go live, please contact [email protected] to obtain a live API token. You will have to replace the sandbox token in your code with the live token.
Check the following before you go live:
- you have set up webhooks to receive live events
- you have entered correct billing details inside your Onfido Dashboard
The Onfido SDK has been optimised to provide the following accessibility support by default:
- Screen reader support: accessible labels for textual and non-textual elements available to aid screen reader navigation, including dynamic alerts
- Keyboard navigation: all interactive elements are reachable using a keyboard
- Sufficient color contrast: default colors have been tested to meet the recommended level of contrast
- Sufficient touch target size: all interactive elements have been designed to meet the recommended touch target size
Refer to our accessibility statement for more details.
From version 6.5.0
, TypeScript is officially supported, providing typings for:
init()
methodoptions
argument (SdkOptions
) and return object (SdkHandle
) ofinit()
method- Arguments (
SdkResponse
andSdkError
) foronComplete()
andonError()
callbacks steps
option (StepTypes
andStepConfig
)language
option (SupportedLanguages
andLocaleConfig
)region
option (ServerRegions
)
Latest ✔ | Latest * ✔ | Latest ✔ | Latest ✔ |
* Firefox on Android, iOS not supported
In order to mitigate potential cross-site scripting issues, most modern browsers use a Content Security Policy (CSP). These policies might prevent the SDK from correctly displaying the images captured during the flow or correctly load styles. If CSP is blocking some of the SDK functionalities, make sure you add the following snippet inside the <head>
tag of your application.
<meta
http-equiv="Content-Security-Policy"
content="
default-src 'self' https://assets.onfido.com;
script-src 'self' 'unsafe-eval' https://assets.onfido.com https://sentry.io https://*.sardine.ai/;
style-src 'self' https://assets.onfido.com;
connect-src 'self' data: blob: *.onfido.com wss://*.onfido.com https://sentry.io;
img-src 'self' data: blob: https://assets.onfido.com/;
media-src blob: https://assets.onfido.com;
worker-src 'self' blob:;
object-src 'self' blob:;
frame-src 'self' data: blob: https://*.sardine.ai/;
"
/>
In rare cases, the SDK back button might not work as expected within the application history. This is due to the interaction of history/createBrowserHistory
with the browser history API.
If you notice that by clicking on the SDK back button, you get redirected to the page that preceeded the SDK initialization, you might want to consider using the following configuration option when initialising the SDK: useMemoryHistory: true
. This option allows the SDK to use the history/createMemoryHistory
function, instead of the default history/createBrowserHistory
. This option is intended as workaround, while a more permanent fix is implemented.
Example:
Onfido.init({
useMemoryHistory: true,
})
If embedded inside a cross-origin iframe, the SDK may fail to access the camera and microphone. This is a known issue on recent Chrome versions where requests fail in a similar way as if a user had denied a permission prompt. You may need to add the following allow
attribute to your iframe:
<iframe src="..." allow="camera;microphone"></iframe>
Please open an issue through GitHub. Please be as detailed as you can. Remember not to submit your token in the issue. Also check the closed issues to check whether it has been previously raised and answered.
If you have any issues that contain sensitive information please send us an email with the ISSUE: at the start of the subject to [email protected].
Previous versions of the SDK will be supported for a month after a new major version release. Note that when the support period has expired for an SDK version, no bug fixes will be provided, but the SDK will keep functioning (until further notice).
Please see LICENSE for licensing details.