Face Session Flow

Add the following code at the start-up of your application to initialise the SDK:

import * as UqudoSDK from 'uqudosdk-capacitor';

...
//On App startup
new UqudoSDK.UqudoPlugin().init();
...

Below you can find an example on how to initiate the face session process:

var token = "<please put your token here>";
var faceSession = new UqudoSDK.FaceSessionConfigurationBuilder()
	.setToken(token)
	.setSessionId("<your session id>")
	.build();

try {
   const plugin = new UqudoSDK.UqudoPlugin();
   const result = await plugin.faceSession(faceSession);
   console.log(result.value);
} catch (error) {
}

In order to evaluate all the possible options please refer to section Face Session Flow. The JS interface is the porting of the JAVA one. In addition, you can check UqudoCordovaPlugin.js inside the plugin folder or directly from your IDE.

If successful, the response is a JSON Web Signature (JWS). Please refer to section "SDK result" for further details.

In case of a failure, the callback returns the following object:

Last updated