Sign in

Get OAuth access token

documented

Obtain an OAuth access token for a user.

POST /api/1/oauth/access_tokenAccountsno 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://www.instapaper.com/api/1/oauth/access_token" \
  -X POST \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -H 'Authorization: OAuth oauth_consumer_key="{{INSTAPAPER_API_KEY}}", oauth_token="{{OAUTH2_ACCESS_TOKEN}}", oauth_signature_method="HMAC-SHA1", oauth_timestamp="{{TIMESTAMP}}", oauth_nonce="{{NONCE}}", oauth_version="1.0", oauth_signature="{{INSTAPAPER_SECRET}}"' \
  -d 'x_auth_username={{username}}&x_auth_password={{password}}&x_auth_mode=client_auth'