Sign in

OAuth token

documented

Exchange authorization code for access token (POST /oauth/token).

POST /oauth/tokenOAuthno 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://api.smsapi.com/oauth/token" \
  -X POST \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "client_id={{$SMSAPI_CLIENT_ID}}&client_secret={{$SMSAPI_CLIENT_SECRET}}&code={{$AUTHORIZATION_CODE}}&grant_type=authorization_code&redirect_uri={{$REDIRECT_URI}}"
OAuth token · SMSAPI · OpenIntegrations