Authenticate users with secure push notifications to mobile devices
A push notification displayed on a mobile device.
CHALLENGE_REQUIRED
- User must complete an authentication challenge (proceed to step 2)ALLOW
- Action is permitted without additional authenticationBLOCK
- Action is blocked for security reasonsREVIEW
- Action requires manual reviewDeclined
isConsumed
is true
, isVerified
is false
The challenge has been declined by a user. Show an error message to the user and provide a way to retry the challenge.Verified
isConsumed
is true
, isVerified
is true
and an accessToken
is returned.The challenge has been verified by a user. Show a success message to the user and proceed with the next step.getChallenge
method to check if there is a challenge. If there is a challenge, present a dialog to allow the user to approve or decline the challenge.
updateChallenge
method.
isConsumed
as true
and isVerified
as false
. The UI should be updated to reflect that the challenge was declined.
You’ve successfully implemented device credential authentication with Authsignal using push notifications!