Push Notification Authentication
Push notification authentication is a way of confirming a person's identity by sending an approval request to an app on their trusted mobile device. When signing in, the user receives a notification and simply taps to approve or deny the attempt, rather than typing in a code. It is commonly used as one factor in multi-factor authentication to add protection beyond a password.
Push notification authentication is a possession-based authentication method in which a service provider sends a real-time approval request to a registered application on the user's trusted mobile device, and the user approves or denies the request to complete verification. It is typically deployed as a factor within an MFA flow, where the possession factor (the enrolled device) supplements a knowledge factor such as a password; the specifics of binding, cryptographic verification, and out-of-band delivery vary by vendor and deployment. Note that this term addresses authentication (verifying who the principal is) and does not by itself govern authorization decisions; the strength of the mechanism depends on implementation details such as device binding, request signing, and mitigations against approval fatigue, which are out of scope for this definition based on the available evidence.
Why it matters
Push notification authentication addresses a persistent weakness in password-only sign-in by adding a possession factor that is bound to a user's trusted mobile device. Because the user approves or denies a request with a single tap rather than transcribing a one-time code, it reduces friction relative to code-entry methods while still requiring the attacker to possess or compromise the enrolled device. This combination of usability and an out-of-band possession factor is a large part of why it is widely deployed as an MFA option across consumer and enterprise services.
At the same time, the security value of push authentication depends heavily on how it is implemented. A tap-to-approve model that surfaces frequent or ambiguous prompts can expose users to approval fatigue, where a person reflexively accepts an illegitimate request. Mitigations such as device binding, request signing, and number-matching-style verification vary by vendor and deployment and are not intrinsic to the term itself. IAM teams evaluating push authentication should therefore treat the underlying implementation details as the determinant of assurance rather than assuming all push mechanisms provide equivalent protection.
It is also important to keep the scope of this method narrow: push notification authentication verifies who the principal is and does not by itself make authorization decisions about what that principal may do. Treating an approved push as a grant of access, rather than as the completion of an authentication step that feeds into a separate authorization flow, is a common conceptual error that can lead to overbroad trust in the mechanism.
Who it's relevant to
Inside Push Notification Authentication
Common questions
Answers to the questions practitioners most commonly ask about Push Notification Authentication.
