Sign in

Token exchange

documented

Exchange an authorization code for an access token.

POST /oauth/tokenAuthenticationno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://secure.soundcloud.com/oauth/token" \
  -X POST \
  -H "Accept: application/json; charset=utf-8" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Authorization: Basic {{SOUNDCLOUD_CLIENT_CREDENTIALS_B64}}" \
  --data-urlencode "grant_type=client_credentials"
Token exchange · soundcloud · OpenIntegrations