Update reading progress
documentedUpdate the user's reading progress for a bookmark.
POST /api/1/bookmarks/update_read_progressBookmarksno 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.instapaper.com/api/1/bookmarks/update_read_progress" \
-X POST \
-H 'Authorization: OAuth oauth_consumer_key="{{INSTAPAPER_API_KEY}}", oauth_token="{{OAUTH2_ACCESS_TOKEN}}", oauth_signature_method="HMAC-SHA1", oauth_timestamp="{{oauth_timestamp}}", oauth_nonce="{{oauth_nonce}}", oauth_version="1.0", oauth_signature="{{oauth_signature}}"' \
-H "Content-Type: application/json" \
-d '{"bookmark_id": {{$bookmark_id}}, "progress": {{$progress}}, "progress_timestamp": {{$progress_timestamp}}}'