Skip to main content

Authorization endpoint

The authorization endpoint is used to interact with the resource owner and obtain an authorization grant.

Request Body
    response_type string

    The value MUST be one of "code" for requesting an authorization code as described by [RFC6749] Section 4.1.1, "token" for requesting an access token (implicit grant) as described by [RFC6749] Section 4.2.2.

    client_id string required

    OAuth 2.0 Client Identifier valid at the Authorization Server.

    redirect_uri string required

    Redirection URI to which the response will be sent. This URI MUST exactly match one of the Redirection URI values for the Client pre-registered at the OpenID Provider.

    scope string

    OpenID Connect requests MUST contain the openid scope value. If the openid scope value is not present, the behavior is entirely unspecified.

    state string

    Opaque value used to maintain state between the request and the callback.

Responses

OK

Loading...