Sign in

Refresh OAuth2 token

documented

Refresh an OAuth2 access token.

POST /v2/oauth2/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://api.tumblr.com/v2/oauth2/token" \
  -X POST \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d 'grant_type=authorization_code&code={{$code}}&redirect_uri={{$redirect_uri}}&client_id={{TUMBLR_API_KEY}}&client_secret={{TUMBLR_API_SECRET}}'