OAuth 2.0 Workflows

Learn about different types of OAuth workflows.

Once the client developers have registered the client and acquired the client credentials, they can initiate the OAuth protocol. The workflow of the protocol differs based on the grant type. As discussed earlier, we have four types of grants in OAuth.

Press + to interact
Types of grants
Types of grants

We'll look at the workflow for each type in this lesson.

Authorization code grant

The steps followed in this grant type are as follows:

  1. Using the authorization endpoint, the client redirects the resource owner to the authorization server. This request contains the redirect URI, desired scopes, and ...