Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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}

share|improve this question
Two things ? 1°) Is it possible to get the error message given by Twitter ? Thanks in advance. 2°) A comma is missing between the oauth_timestamp value and "oauth_version". Typo or you forgot it in the request ? – air-dex Nov 21 '12 at 1:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.