...

/

Authorization Code

Authorization Code

Learn how an authorization code grant can be used for getting an access token.

We'll cover the following...

The authorization code grant is used by confidential and public clients to exchange an authorization code for an access token.

Step one

The client redirects the user to the authorization server appending the following parameters as a query string:

  • response type
  • client_id
  • redirect_uri
  • scope
  • state
http://authserveraddress/?response_type=c
...