[twitter-dev] Re: OAuth 1.0a changes and PIN-based authentication shipped

2009-06-21 Thread Doug Williams
Matt mentioned this was coming May 28 [1]. Most of the problems we have hear of came from the fact that the Ruby OAuth library sent a oauth_callback parameter without the knowledge of the developer. Regardless, we are certainly sorry to see you go. Please feel free to email us [2] if you have any

[twitter-dev] Re: OAuth 1.0a changes and PIN-based authentication shipped

2009-06-21 Thread app
I think it's pretty lousy that this change was pushed with no warning at all. It's discouraging when you see that your app is failing after it had been working just fine with no code change. I didn't even know my app was broken until I attempted to use it. Now if I want this thing to work, I have

[twitter-dev] Re: OAuth 1.0a changes and PIN-based authentication shipped

2009-06-17 Thread Andrej
Just wanted to post info on how to change Ruby OAuth example that can be found on twitter page: Instead of line in callback action @access_token = @request_token.get_access_token use following passing oauth_verifier @access_token = @request_token.get_access_token(:oauth_verifier => params[:oau

[twitter-dev] Re: OAuth 1.0a changes and PIN-based authentication shipped

2009-06-13 Thread Nizar
I have tried encoding the callback url, I have even tried changing the oauth_verison to 1.0a and I even tried with signature type of PLAIN_TEXT but to no avail. Has anybody done this successfully in .NET. I would really appreciate any help thanks. I am not sure if this is implemented yet on twitte

[twitter-dev] Re: OAuth 1.0a changes and PIN-based authentication shipped

2009-06-13 Thread Abraham Williams
Try encoding the callback URL first. For example: oauth_callback=http%3A%2F% 2Fprinter.example.com%2Frequest_token_ready This example is from: http://oauth.googlecode.com/svn/spec/core/1.0a/drafts/3/oauth-core-1_0a.html#anchor43 On Sat, Jun 13, 2009 at 13:19, Nizar wrote: > Hi Doug, > > After r

[twitter-dev] Re: OAuth 1.0a changes and PIN-based authentication shipped

2009-06-13 Thread Nizar
Hi Doug, After reading your post I passed the oauth_callback parameter when requesting a token but I keep getting 'Failed to validate oauth signature and token'. It works as soon as I take out the callback parameter. I am using .NET and here is my GET request please advise if I am missing somethi