URL Editor

Decompose & edit URL parameters

Authentication

OAuth 2.0 Authorization

OAuth authorization code flow

Example URL

https://auth.example.com/oauth/authorize?client_id=YOUR_CLIENT_ID&redirect_uri=https%3A%2F%2Fyourapp.com%2Fcallback&response_type=code&scope=read%20write&state=random_state_string
Open in Editor

Parameters

client_id=YOUR_CLIENT_ID

Your application's unique identifier from the OAuth provider

redirect_uri=https://yourapp.com/callback

URL where users are sent after authorization

response_type=code

OAuth flow type: "code" for authorization code, "token" for implicit

scope=read write

Permissions your app is requesting (space-separated)

state=random_state_string

Random string to prevent CSRF attacks

URL Structure

Protocol
https:
Host
auth.example.com
Path
/oauth/authorize

Related Templates