Terminology Index
Glossary
1801 terms
Showing 129-160 of 1801 terms
A32
Authorization Code Flow
The standard OAuth 2.0 and OpenID Connect flow for web and mobile apps, where the app receives a short-lived authorization code and exchanges it server-side for tokens. It keeps tokens off the browser front channel, making it the recommended secure flow.
Instead of handing tokens directly through the browser, the app gets a code that it trades for access and ID tokens over a back channel, reducing exposure. Modern implementations add PKCE to protect the code from interception, making this the preferred flow for confidential and public clients alike.
Introduced in: Identity and Access Management
Examples
- A web app redirecting a user to log in, then exchanging the returned code for tokens.
- A mobile app using authorization code flow with PKCE for secure sign-in.
- Receiving an ID token and access token after the back-channel exchange.
No related terms linked yet.
