[twitter-dev] Re: Missing Authenticate Header with OAuth

2009-03-19 Thread Joshua Perry
I don't know if this will help you, I'm using C# so I don't know exactly how Net::OAuth is supposed to work, but here is a capture of the HTTP request that I am making, perhaps you can compare with your own: GET /statuses/friends_timeline.xml?count=50since_id=1 HTTP/1.1 Authorization: OAuth

[twitter-dev] Re: Missing Authenticate Header with OAuth

2009-03-19 Thread Pankaj Jain
Josh, Thanks for that. It's a little further down the line from where I am but I figured out the problem I was having when requesting the token. I was using a POST method where I should have been using a GET method. That got me past the Token Request. However, I am getting stuck at the

[twitter-dev] Re: Missing Authenticate Header with OAuth

2009-03-19 Thread Abraham Williams
The application won't display on http://twitter.com/account/connectionsuntil after the application has successfully gotten an access token from Twitter. If the application is listed on http://twitter.com/oauth_clients then it should be working and there is probably an issue with your

[twitter-dev] Re: Missing Authenticate Header with OAuth

2009-03-19 Thread Joshua Perry
The POST was not an unwarranted assumption as the oauth specification [1] states that POST is RECOMMENDED for retrieving the both the Request and the Access Tokens. Also, as Abraham said, if your application doesn't successfully convert the Request Token into an Access Token then it will

[twitter-dev] Re: Missing Authenticate Header with OAuth

2009-03-19 Thread Pankaj Jain
Abraham/Josh, Thanks for your advice. time to do some more reading and debugging. Cheers, Pankaj On Mar 20, 12:44 am, Joshua Perry j...@6bit.com wrote: The POST was not an unwarranted assumption as the oauth specification [1] states that POST is RECOMMENDED for retrieving the both the Request