URL Editor

Decompose & edit URL parameters

Authentication

OAuth Token Request

OAuth token endpoint URL

Example URL

https://auth.example.com/oauth/token?grant_type=authorization_code&code=AUTH_CODE&redirect_uri=https%3A%2F%2Fyourapp.com%2Fcallback&client_id=YOUR_CLIENT_ID
Open in Editor

Parameters

grant_type=authorization_code

Token request type: authorization_code, refresh_token, client_credentials

code=AUTH_CODE

Authorization code received from the authorization endpoint

redirect_uri=https://yourapp.com/callback

URL where users are sent after authorization

client_id=YOUR_CLIENT_ID

Your application's unique identifier from the OAuth provider

URL Structure

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

Related Templates