React Native
Requirements
Installation of the Authenteq Flow npm requires React Native v0.61.5
.
Getting started
Install the required NPM react-native-authenteq-flow
:
$ npm install react-native-authenteq-flow --save
or
$ yarn add react-native-authenteq-flow
Optionally install the Live ID document scanner and its DB with the NPM:
react-native-authenteq-flow-docscanner
react-native-authenteq-flow-docscanner-db
Start an Identification
Import AuthenteqFlow in JS file before usage:
import AuthenteqFlow from 'react-native-authenteq-flow';
Start identification:
To use a token identification or specify a custom theme use identificationWithParameters
specifying a dictionary:
Parameter fields description:
Key name
Type
Description
clientId
String
Client ID value from Customer Dashboard (required)
clientSecret
String
Client Secret value from Customer Daskboard (required unless token is specified)
flowId
String
In conjunction with Client Secret, Flow ID specify a verification flow defined in customer's dashboard (optional)
token
String
Authentication token (required unless clientSecret is specified)
theme
Dictionary
Customized theme settings (optional)
Android theme property:
Key name
Type
Description
AndroidStyle
String
iOS theme properties:
Property name
Type
Description
primaryColor
String (hex value)
Main color of your scheme
textColor
String (hex value)
Text color
screenBackgroundColor
String (hex value)
Background color for all screens
viewBackgroundHighlightColor
String (hex value)
Color for some highlighted area in screen background
separatorColor
String (hex value)
Color for table view cells separator
selectedButtonTextColor
String (hex value)
Color for selected buttons text
selectedButtonBackgroundColor
String (hex value)
Background color for selected buttons
successColor
String (hex value)
Color for success flow symbols
font
String
Font name for text
boldFont
String
Font name for bold text
identificationInstructionImageForSelfie
Image
Custom image for liveness instructions. We recommend using images smaller than 300dp
identificationInstructionImageForPassport
Image
Custom image for passport scan instructions. We recommend using images smaller than 300dp
identificationInstructionImageForDriverLicense
Image
Custom image for driver's license scan instructions. We recommend using images smaller than 300dp
identificationInstructionImageForIdCard
Image
Custom image for ID card scan instructions. We recommend using images smaller than 300dp
identificationNfcSymbolCheck
Image
Custom image NFC chip presence verification instructions in the document
identificationNfcInstruction
Image
Custom image NFC document scan instructions
identificationNfcScanInside
Image
Custom image for NFC document inside scan instructions
identificationInstructionImageForProofOfAddress
Image
Custom image for proof of address scan instructions. We recommend using images smaller than 300dp
identificationIconForIdDocument
Image
Custom icon for ID document. We recommend using images smaller than 250dp
identificationIconForProofOfAddress
Image
Custom icon for proof of address. We recommend using images smaller than 250dp
Example of identification JSON output for single document (driver's license)
Example of identification JSON output for multiple documents (passport and driver's license)
Deprecated fields
selfieImageFile
is deprecated and is now available as selfieImageFilePath
documentFrontFile
is deprecated and is now available as documentFrontImageFilePath
documentBackFile
is deprecated and is now available as documentBackImageFilePath
Face Authentication
To perform a face authentication, set the parameters for authentication (clientSecret
or token
) and the verificationId
to match:
We suggest to use the token authentication in production environment.
Example of face authentication JSON output
With the code obtained it is possible to get the face authentication result using the following API:
Obtain the result of a face authentication
GET
https://api.app.authenteq.com/mobile-sdk/face-authentication-result
This endpoint is authorized with Basic Authorization. You should use your Client ID
and Client Secret
from the Customer Dashboard as the credentials.
Query Parameters
code*
string
The code provided at the conclusion of SDK face authentication
Headers
Authorization*
string
Your client credentials combined with a colon separator, base64-encoded and prefixed with "Basic ".
When successful the response will contain a single boolean property named success
:
Last updated