Skip to main content
GET
Initiate the OAuth 2.0 authorization code flow. This endpoint is used for web applications that need to authenticate users.

Query Parameters

string
required
Your application’s client ID
string
required
The URI to redirect to after authorization (must match registered URIs)
string
required
Must be “code”
string
Space-separated list of requested scopes
string
Random string to prevent CSRF attacks
string
PKCE code challenge (recommended)
string
PKCE challenge method (e.g. “S256”)

Response

Upon successful authorization, the user will be redirected to the redirect_uri with:
  • An authorization code (code) parameter
  • The original state parameter (if provided)