For the complete documentation index, see llms.txt. This page is also available as Markdown.

Video ID - VideoID

This component is responsible for recording a user identifying themselves, showing their face and their identity document.

  • Internal management of cameras, microphone, and permissions.

  • Connection with the services.

  • OCR reading and document capture.

Dependencies

Flutter:

dependencies:
  fphi_sdkmobile_videoid:
    hosted:
      name: fphi_sdkmobile_videoid
      url: https://facephicorp.jfrog.io/artifactory/api/pub/pub-pro-fphi/
    version: ^<Version>

Android - Gradle:

implementation "com.facephi.androidsdk:videoid_component:$version"

iOS - CocoaPods:

s.dependency 'FPHISDKVideoIDomponent', '~> $version'

Method startVideoIdComponent

Once the SDK has been started and a new operation has been created, the component can be launched. Any of its controllers can be used to execute its functionality.

Component Launch:

Basic configuration

To launch the current component, an object VideoIdConfiguration must be created, which will be the configuration of the component controller.

The basic configuration needed for this is as follows:

Video ID Configuration

Advanced component configuration

Below are all the fields that are part of this class.

Result reception

The launch will return the information in the format VideoIdResult. It being possible to distinguish between a successful launch and an unsuccessful one:

Below are all the fields that are part of this class.

Video ID Result

Last updated