Identification
Example to Start an Identification
IdentificationParams params = new IdentificationParamsWithClientSecret(
"< client id >",
"< client secret >",
"< flow ID >", // optional
R.style.AuthenteqThemeBase // optional
);
IdentificationActivity.startForResult(
activity,
MY_REQUEST_CODE,
params
);val parameters = IdentificationParamsWithClientSecret(
"< client id >",
"< client secret >",
R.style.AuthenteqThemeBase // optional
)
IdentificationActivity.startForResult(
activity,
REQUEST_CODE_IDENTIFICATION,
params
)Start an Identification providing authentication Token
Identification completion
Last updated
Was this helpful?