Obtain OAuth1 temporary credentials
documentedCreate a temporary OAuth1 credential to begin user authorization.
POST /oauth/request_tokenAuthenticationno implementation yet0 runsNo 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://www.tumblr.com/oauth/request_token" \
-X POST \
-H "Authorization: OAuth oauth_consumer_key=\"{{TUMBLR_API_KEY}}\", oauth_nonce=\"{{$nonce}}\", oauth_signature=\"{{OAUTH1_SIGNATURE}}\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"{{$timestamp}}\", oauth_version=\"1.0\", oauth_callback=\"{{$oauth_callback}}\"" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d ""