3.1.1. Authorization Code Flow Steps
The Authorization Code Flow goes through the following steps.
- Client prepares an Authentication Request containing the desired request parameters.
- Client sends the request to the Authorization Server.
- Authorization Server Authenticates the End-User.
- Authorization Server obtains End-User Consent/Authorization.
- Authorization Server sends the End-User back to the Client with an Authorization Code.
- Client requests a response using the Authorization Code at the Token Endpoint.
- Client receives a response that contains an ID Token and Access Token in the response body.
- Client validates the ID token and retrieves the End-User's Subject Identifier.
https://openid.net/specs/openid-connect-core-1_0.html#CodeFlowAuth
This task addresses steps 6-8
Resources
Not included:
AC
- query params are removed from the url post login
https://openid.net/specs/openid-connect-core-1_0.html#CodeFlowAuth
This task addresses steps 6-8
Resources
Not included:
AC