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
Parameters
grant_type=authorization_codeToken request type: authorization_code, refresh_token, client_credentials
code=AUTH_CODEAuthorization code received from the authorization endpoint
redirect_uri=https://yourapp.com/callbackURL where users are sent after authorization
client_id=YOUR_CLIENT_IDYour application's unique identifier from the OAuth provider
URL Structure
Protocol
https:
Host
auth.example.com
Path
/oauth/token