Thanks! I finally managed to get an access token from browser sign in flow, but I’m hitting error 32, “Could not authenticate you.” when attempting to use the token to post a tweet.
Relevant Request headers
POST /1.1/statuses/update.json?status=HELLO%20WORLD%20api HTTP/1.1
Authorization: OAuth
oauth_consumer_key=$APP_KEY,
oauth_nonce=$GENERATED,
oauth_signature=$GENERATED,
oauth_signature_method="HMAC-SHA1",
oauth_timestamp=$GENERATED,
oauth_token=$ACCESS_TOKEN_FROM_BROWSER_SIGNIN,
oauth_version="1.0"
What’s wrong with this request?