Sign in

OAuth1 to OAuth2 token exchange

documented

Exchange an OAuth1 access token for an OAuth2 token.

POST /v2/oauth2/exchangeAuthenticationno 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.tumblr.com/v2/oauth2/exchange" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Basic {{TUMBLR_CLIENT_CRED}}" \
  -d '{"oauth_token": "{{$oauth_token}}", "oauth_token_secret": "{{$oauth_token_secret}}", "oauth_verifier": "{{$oauth_verifier}}"}'