Exchange the Code for Tokens
To exchange this code for access and ID tokens, you pass it to your authorization server's /token
endpoint. If you are using the default Okta authorization server, then your request would look something like this:
curl --request POST \
--url https://${yourOktaDomain}/oauth2/default/v1/token \
--header 'accept: application/json' \
--header 'authorization: Basic MG9hY...' \
--header 'content-type: application/x-www-form-urlencoded' \
--data 'grant_type=authorization_code&redirect_uri=http%3A%2F%2Flocalhost%3A8080&code=P59yPm1_X1gxtdEOEZjn'
Important: The call to the
/token
endpoint requires authentication. In this case, it is a Basic Auth digest of the client ID and secret. You can find the client ID and secret in your application's General tab. This requirement is why this call is only appropriate for applications that can guarantee the confidentiality of the client secret. For more on Basic Auth, see Client Authentication Methods.
Note the parameters that are being passed:
grant_type
isauthorization_code
, indicating that we are using the authorization code grant type.redirect_uri
must match the URI that was used to get the authorization code.code
is the authorization code that you got from the/authorize
endpoint.
For more information on these parameters, see the OAuth 2.0 API reference.
If the code is still valid, your application will receive back access and ID tokens:
{
"access_token": "eyJhbG[...]9pDQ",
"token_type": "Bearer",
"expires_in": 3600,
"scope": "openid",
"id_token": "eyJhbG[...]RTM0A"
}