[twitter-dev] Re: Twitter: What did you change in OAuth?

2009-07-28 Thread TheSaintr
I'm Using , Using http://oauth.googlecode.com/svn/code/csharp/ And it fails :( any thoughts on what might help? On Jul 28, 6:23 am, chinaski007 chinaski...@gmail.com wrote: Confirmed.  Google Playground does not work.

[twitter-dev] Re: Twitter: What did you change in OAuth?

2009-07-28 Thread scotth_uk
It's quite funny I suppose, been using basic auth forever, last week change over to OAuth...today, concidering going back, give a couple of years to iron out the bugs and maybe try again. I'm using Abraham Williams' PHP twitter OAuth library, I don't suppose anyone has found a fix for this?

[twitter-dev] Re: Twitter: What did you change in OAuth?

2009-07-28 Thread Duane Roelands
Looks like it's more than spaces. Looks like other characters are affected and URLPathEncode isn't handling it. Has -anyone- heard -anything- from Twitter? On Jul 28, 6:16 am, scotth_uk satsc...@gmail.com wrote: It's quite funny I suppose, been using basic auth forever, last week change over

[twitter-dev] Re: Twitter: What did you change in OAuth?

2009-07-28 Thread scotth_uk
Twitter Status : ... Is adding feature to his app so it can switch between OAuth and Basic for when OAuth breaks again. :-) Well, at least Basic auth's phase-out date has been pushed back another year.

[twitter-dev] Re: Twitter: What did you change in OAuth?

2009-07-28 Thread thetago...@googlemail.com
Apparently two things were changed: 1. Setting the Consumer Secret is now a mandatory part of the signing process, empty consumer secrets don't work anymore. 2. Parameter encoding didn't previously enforce the part of section 5.1 that says that Hexadecimal characters in encodings MUST be upper

[twitter-dev] Re: Twitter: What did you change in OAuth?

2009-07-28 Thread goodtest
Also check out things that broke for me(and their solutions) http://groups.google.com/group/twitter-development-talk/browse_thread/thread/59ed5372f7c1b623 On Jul 28, 6:42 am, Duane Roelands duane.roela...@gmail.com wrote: Glad things are working for you. ;) Still no luck here.  I'm signing

[twitter-dev] Re: Twitter: What did you change in OAuth?

2009-07-28 Thread timwhitlock
I am signing with both secrets too, and have upper case urlencoding. Signing requests with an empty token secret (i.e. when getting original request token) work 100% I am doing the following to obtain the hmac key: $key = rawurlencode($this-consumer_secret).''.rawurlencode($this- token_secret);

[twitter-dev] Re: Twitter: What did you change in OAuth?

2009-07-28 Thread unVOXT
other threads suggest resolution by checking and changing the method of url encoding. On Jul 28, 12:27 am, Duane Roelands duane.roela...@gmail.com wrote: Simply telling developers that something changed is not sufficient information to help us get our applications back online. We need

[twitter-dev] Re: Twitter: What did you change in OAuth?

2009-07-28 Thread Duane Roelands
Check this thread for a solution for VB.NET libraries (and perhaps a good starting point for other languages). http://groups.google.com/group/twitter-development-talk/browse_thread/thread/734a29fd71d7fdd9# On Jul 28, 7:50 pm, unVOXT unv...@gmail.com wrote: other threads suggest resolution by

[twitter-dev] Re: Twitter: What did you change in OAuth?

2009-07-27 Thread Doug Williams
Duane,I will gather some specifics and post them here. We appreciate your patience. In the mean time, you can use the OAuth playground to see where your signature is failing: http://googlecodesamples.com/oauth_playground/ Thanks, Doug On Mon, Jul 27, 2009 at 9:27 PM, Duane Roelands

[twitter-dev] Re: Twitter: What did you change in OAuth?

2009-07-27 Thread Duane Roelands
The OAuth Playground appears to be broken. Fill out the appropriate fields and the Loading spinner just spins forever. On Jul 28, 12:39 am, Doug Williams d...@twitter.com wrote: Duane,I will gather some specifics and post them here. We appreciate your patience. In the mean time, you can use

[twitter-dev] Re: Twitter: What did you change in OAuth?

2009-07-27 Thread chinaski007
Confirmed. Google Playground does not work.