Face Session Flow
import * as UqudoSDK from 'uqudosdk-capacitor';
...
//On App startup
new UqudoSDK.UqudoPlugin().init();
...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) {
}Property
Type
Optional
Default
Description
Last updated
Was this helpful?