Skip to content

Commit 98cf8b1

Browse files
authored
Fixed incorrect reference to ID token in OAuth2
Changed “This approach is called the hybrid flow because it mixes the implicit grant with the authorization code flow” To: “This approach is called the hybrid flow because it mixes OIDC with the OAuth2 authorization code flow” There are no ID token in OAuth2. ID tokens are OIDC. Source: https://twitter.com/manicode/status/1660934532554522624?s=20
1 parent 304399e commit 98cf8b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/develop/v2-oauth2-auth-code-flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ The following table describes the various error codes that can be returned in th
146146

147147
### Request an ID token as well or hybrid flow
148148

149-
To learn who the user is before redeeming an authorization code, it's common for applications to also request an ID token when they request the authorization code. This approach is called the *hybrid flow* because it mixes the implicit grant with the authorization code flow.
149+
To learn who the user is before redeeming an authorization code, it's common for applications to also request an ID token when they request the authorization code. This approach is called the *hybrid flow* because it mixes OIDC with the OAuth2 authorization code flow.
150150

151151
The hybrid flow is commonly used in web apps to render a page for a user without blocking on code redemption, notably in [ASP.NET](quickstart-v2-aspnet-core-webapp.md). Both single-page apps and traditional web apps benefit from reduced latency in this model.
152152

0 commit comments

Comments
 (0)