Authentication
Authorize
Initiate OAuth 2.0 authorization flow
GET
Initiate the OAuth 2.0 authorization code flow. This endpoint is used for web applications that need to authenticate users.
Query Parameters
Your application’s client ID
The URI to redirect to after authorization (must match registered URIs)
Must be “code”
Space-separated list of requested scopes
Random string to prevent CSRF attacks
PKCE code challenge (recommended)
PKCE challenge method (e.g. “S256”)
Response
Upon successful authorization, the user will be redirected to theredirect_uri with:
- An authorization code (
code) parameter - The original
stateparameter (if provided)