auth
Call the auth API for pre-transaction authentication.
Users can initiate authentication through the UI before starting a transaction. You can either call this API for pre-transaction authentication or skip this API and rely solely on authentication through the TransactionPermit SPI.
Method Signature
copy
void auth(@Nullable AuthInfo method);Request parameters
Item | Type | Description | Required |
method | The MPP identity authentication configuration. | Optional |
AuthInfo
Item | Type | Description |
isAuth | Boolean | Whether to process authentication:
|
cdCvmInformation | CdCvmInformation | Authentication methods
|
Response parameters
N/A
Sample
copy
manager = ACTapManager.getInstance(this.getApplication()).isPaymentAvailable();
manager.auth(new AuthInfo(true, CdCvmInformation.FACIAL_BIOMETRIC));