Launching the Plugin
The plugin window is launched with open(options)
method:
Call GET /api/folders/?meta_data=transaction_id==<your_transaction_id>
to find a folder in Oz API from your backend by your unique identifier.
Read more about Oz API.
Parameters
The full list of OzLiveness.open()
parameters:
options
– an object with the following settings:token
– (optional) the auth token;license
– an object containing the license data;licenseUrl
– a string containing the path to the license;lang
– a string containing the identifier of one of the installed language packs;meta
– an object with names of meta fields in keys and their string values in values. Metadata is transferred to Oz API and can be used to obtain analysis results or for searching;params
– an object with identifiers and additional parameters:extract_best_shot
–true
orfalse
: run the best frame choice in the Quality analysis;
action
– an array of strings with identifiers of actions to be performed. Available actions:photo_id_front
– photo of the ID front side;photo_id_back
– photo of the ID back side;video_selfie_left
– turn head to the left;video_selfie_right
– turn head to the right;video_selfie_down
– tilt head downwards;video_selfie_high
– raise head up;video_selfie_smile
– smile;video_selfie_eyes
– blink;video_selfie_scan
– scanning;video_selfie_blank
– no action, simple selfie;video_selfie_best
– special action to select the best shot from a video and perform analysis on it instead of the full video.
overlay_options
– the document's template displaying options:show_document_pattern
:true/false
–true
by default, displays a template image, if set tofalse
, the image is replaced by a rectangular frame;
on_submit
– a callback function (no arguments) that is called after submitting customer data to the server (unavailable for thecapture
mode).on_capture_complete
– a callback function (with one argument) that is called after the video is captured and retrieves the information on this video. The example of the response is described here.on_result
– a callback function (with one argument) that is called periodically during the analysis and retrieves an intermediate result (unavailable for thecapture
mode). The result content depends on the Web Adapterresult_mode
configuration parameter and is described here.on_complete
– a callback function (with one argument) that is called after the check is completed and retrieves the analysis result (unavailable for thecapture
mode). The result content depends on the Web Adapterresult_mode
configuration parameter and is described here.on_error
– a callback function (with one argument) that is called in case of any error happened during video capturing and retrieves the error information: an object with the error code, error message, and telemetry ID for logging.on_close
– a callback function (no arguments) that is called after the plugin window is closed (whether manually by the user or automatically after the check is completed).style
– the customization section.device_id
– (optional) identifier of camera that is being used.cameraFacingMode
(since 1.4.0) – the parameter that defines which camera to use; possible values:user
(front camera),environment
(rear camera). This parameter only works if theuse_for_liveness
option in the Web Adapter configuration file is undefined. Ifuse_for_liveness
is set (with any value),cameraFacingMode
gets overridden and ignored.disable_adaptive_aspect_ratio
(since 1.5.0) – ifTrue
, disables the video adaptive aspect ratio, so your video doesn’t automatically adjust to the window aspect ratio. The default value isFalse
, and by default, the video adjusts to the closest ratio of 4:3, 3:4, 16:9, or 9:16. Please note: smartphones still require the portrait orientation to work.get_user_media_timeout
(since 1.5.0) – when Web SDK can’t get access to the user camera, after this timeout it displays a hint on how to solve the problem. The default value is 40000 (ms).
Last updated