Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 3.52 KB

authorization-code.md

File metadata and controls

59 lines (39 loc) · 3.52 KB
description topics contentType useCase
Describes how to call APIs from regular web apps using the Authentication Code Grant.
authorization-code
api-authorization
concept
secure-api
call-api

Call APIs from Server-side Web Apps

In order to access an API from a regular web app, you need to implement the Authorization Code OAuth 2.0 grant. In this document we will see how this flow works.

::: note If you need a refresher on the OAuth 2.0 protocol, you can go through our OAuth 2.0 article. :::

Overview of the flow

The Authorization Code Grant (defined in RFC 6749, section 4.1) is a flow where the browser receives an Authorization Code from Auth0 and sends this to the web app. The web app will then interact with Auth0 and exchange the Authorization Code for an Access Token, and optionally an ID Token and a Refresh Token. The web app can now use this Access Token to call the API on behalf of the user.

Authorization Code Grant

  1. The web app initiates the flow and redirects the browser to Auth0 (specifically to the /authorize endpoint), so the user can authenticate.

  2. Auth0 authenticates the user (via the browser). The first time the user goes through this flow a consent page will be shown where the permissions are listed that will be given to the application (for example: post messages, list contacts, and so forth).

  3. Auth0 redirects the user to the web app (specifically to the redirect_uri, as specified in the /authorize request) with an Authorization Code in the querystring (code).

  4. The web app sends the Authorization Code to Auth0 and asks to exchange it with an Access Token (and optionally an ID Token and a Refresh Token). This is done using the /oauth/token endpoint. When making this request, the web app authenticates with Auth0, using the Client Id and Client Secret.

  5. Auth0 authenticates the web app, validates the Authorization Code and responds back with the token.

  6. The web app can use the Access Token to call the API on behalf of the user.

::: note In OAuth 2.0 terms, the web app is the application, the end user the Resource Owner, the API the Resource Server, the browser the User Agent, and Auth0 the Authorization Server. :::

How to implement the flow

For details on how to implement this using Auth0, refer to Executing an Authorization Code Grant flow.

Rules

Rules will run for the Authorization Code grant. If you wish to execute special logic unique to the Authorization Code grant, you can look at the context.protocol property in your rule. If the value is oidc-basic-profile, then the rule is running during the Authorization Code grant.

For details on how to implement this, refer to Execute an Authorization Code Grant Flow: Customize the Tokens.

Keep reading

::: next-steps