Sign in

Obtain access token

documented

Exchange an authorization code for an access token.

POST /oauth2/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.pushbullet.com/oauth2/token" \
  -X POST \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d "grant_type=authorization_code" \
  -d "client_id={{PUSHBULLET_CLIENT_ID}}" \
  -d "client_secret={{PUSHBULLET_CLIENT_SECRET}}" \
  -d "code={{AUTH_CODE}}"
Obtain access token · Pushbullet · OpenIntegrations