Edit a blog post (legacy)
documentedEdit a post using the legacy route.
POST /v2/blog/{blog-identifier}/post/editBlogsno 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://api.tumblr.com/v2/blog/{{$blog_identifier}}/post/edit" \
-X POST \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json" \
-H "Authorization: OAuth oauth_consumer_key=\"{{TUMBLR_API_KEY}}\", oauth_token=\"{{OAUTH1_TOKEN}}\", oauth_signature=\"{{OAUTH1_SIGNATURE}}\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"{{OAUTH1_TIMESTAMP}}\", oauth_nonce=\"{{OAUTH1_NONCE}}\", oauth_version=\"1.0\"" \
-d 'id={{$id}}&type={{$type}}&title={{$title}}&body={{$body}}'