acceptMobileAuthConfirmation
When a user is enrolled for mobile authentication, they are able to receive and respond to mobile authentication requests. This method accepts the mobile authentication request. See Mobile authentication and Mobile authentication with OTP for more details.
acceptMobileAuthConfirmation(): Promise<void>
Example
OneWelcomeSdk.acceptMobileAuthConfirmation()
.then(() => {
console.log('Accept mobile auth success! ')
})
.catch(error => {
console.error('Accept mobile auth failed: ', error.message)
})