Authorization Request
GET/authz-srv/authz
Authorization Request
This API initiates the OAuth 2.0 / OpenID Connect authorization process. It can be used to perform the following flows:
- Authorization Code Flow - Use
response_type=code - Authorization Code Flow with PKCE - Use
response_type=codewithcode_challengeandcode_challenge_method - Pushed Authorization Request (PAR) - Use
request_uriparameter (obtained from/authz-srv/parendpoint) - Implicit Flow - Use
response_type=token(deprecated, not recommended)
The flow type is determined by the response_type parameter. All parameters are passed as query parameters in the URL, except when using PAR where request_uri is used instead.
Request
Responses
- 302
- 404
Redirect response to redirect_uri with authorization code and state as query param or fragment.
Not Found