diff --git a/src/flow/code-3.html b/src/flow/code-3.html index 9cc7261..7d306f3 100644 --- a/src/flow/code-3.html +++ b/src/flow/code-3.html @@ -55,31 +55,33 @@
- Now that we have the authorization code, we can exchange it for an access token. This is done by sending a POST request to the token endpoint.
+
+ With body data
+
+ https://sso.rumbuddy.cz/realms/OAuthPlayground/protocol/openid-connect/token +
The token endpoint URL
grant_type=authorization_code
+grant_type=
The grant type, in this case authorization_code
client_id=oauth-playground
+client_id=
Client ID of the application. This is a public identifier for the client, and it is used by the authorization server to identify the application when redirecting the user back to the client.
redirect_uri=http://localhost:5555/flow/code-2
+redirect_uri=
The redirect URI
code=--Vto71vecBQbZnbA7ErehWHVQq4x1pm5YtA9Rr7x5zjhMGS
+code=
This is the authorization code we got in the previous step and is used to obtain the access token.