Authentication

All requests for OAuth tokens involve a request to /oauth/authorize.

get/oauth/authorize

Query parameters

response_typestring required

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_idstring required

The client identifier issued to the client during the registration process described by [RFC6749] Section 2.2.

redirect_uristring

After completing its interaction with the resource owner, the authorization server directs the resource owner's user-agent back to the client.The redirection endpoint URI MUST be an absolute URI as defined by [RFC3986] Section 4.3.

Changes