signInWithMFAVerification

abstract fun signInWithMFAVerification(mfaVerification: String, listener: Connection.ISignInListener? = null)

Initiates a sign-in process using Multi-Factor Authentication (MFA) verification code.

When the user employs the classic signIn method, the listener informs whether two-factor authentication is required. In such cases, call signInWithMFACode and provide the code generated by the third-party application.

If the user is unable to provide the generated code, they can use the initial verification code and call this method as an alternative.

Parameters

mfaVerification

The MFA verification code for sign-in authentication.

listener

Optional ISignInListener to receive callbacks for sign-in events. Set to null if not required.

See also