[twitter-dev] Oauth timeout at access_token request

2010-12-20 Thread Dave McCall
I'm creating my first twitter integration and I've gotten pretty far (or at least it feels like have). I'm pretty confident I'm creating my OAUTH headers and signature and all that correctly because the other requests work fine, just not the access_token request. Here's what I'm doing: 1. I do

[twitter-dev] Re: Oauth timeout at access_token request

2010-12-21 Thread Dave McCall
FYI, I have tried the same using https://api.twitter.com as well. Also in step 3 I have currently changed it to https://api.twitter.com/ oauth/authorize because I believe that is the more correct URL (though authenticate does appear to work). Any thoughts? -- Twitter developer documentation and

[twitter-dev] Re: Oauth timeout at access_token request

2010-12-22 Thread Dave McCall
I get great performance in the request_token call. I've racked my brain trying to come up with a way to send the same oauth headers some other way (other than writing a php page or something to do the same). I'm using .Net 1.1 standard HTTPWebRequest methods to do this. I would expect them to

[twitter-dev] Re: Oauth timeout at access_token request

2010-12-23 Thread Dave McCall
Just in case this ever comes up for someone else, here's how I solved this. I had to post an empty string to the page. If you note the lines: If RequestMethod = POST And Not IsNothing(Data) Then objRequest.ContentLength = Data.Length Dim objWriter As New