I am trying to use Twitter API 1.1 Get Usertimeline to grab posts from an account by means of asp.net web method. I am continuously receiving 400 BAD REQUEST from twitter when I try to fetch the response. Could anyone please verify if my request headers are correct and expected as per oAuth and twitter spec?
Authorization: OAuth oauth_nonce="blabla", oauth_signature_method="HMAC-SHA1", oauth_consumer_key="blabla", oauth_token="blablabla", oauth_signature="blablabla", oauth_timestamp="111122323" oauth_version="1.0"
Content-Type: application/x-www-form-urlencoded
URL: https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name={0}&count={1}
oauth_timestampvalue and "oauth_version". Typo or you forgot it in the request ? – air-dex Nov 21 '12 at 1:56