[twitter-dev] Re: Streaming API, Basic Auth Ok, OAuth Unauthorized?

2010-10-25 Thread bradley.meck
So in my case i just encodeURIComponent somewhere? I tried on the POST params and it did not work, nor did the 4 permutations of api-key/ secret and access-token-key/secret. . On Oct 25, 4:31 pm, Ciaran ciar...@gmail.com wrote: Hey Bradley, This is another instance of the the ongoing (and as

Re: [twitter-dev] Re: Streaming API, Basic Auth Ok, OAuth Unauthorized?

2010-10-25 Thread Ciaran
On Mon, Oct 25, 2010 at 10:53 PM, bradley.meck bradley.m...@gmail.com wrote: So in my case i just encodeURIComponent somewhere? I tried on the POST params and it did not work, nor did the 4 permutations of api-key/ secret and access-token-key/secret. Odd, Escaping

[twitter-dev] Re: Streaming API, Basic Auth Ok, OAuth Unauthorized?

2010-10-25 Thread bradley.meck
Correct, I still had the issue when escaping track= Escaping params individually did not work either. Still able to tweet though... Maybe it is a hint at the trouble being more/different than double encoding? Cheers, Bradley On Oct 25, 4:59 pm, Ciaran ciar...@gmail.com wrote: On Mon, Oct

[twitter-dev] Re: Streaming API, Basic Auth Ok, OAuth Unauthorized?

2010-10-25 Thread themattharris
Hey everyone, So OAuth encoding can get confusing and lead to situations like this so i'll go through a very verbose walkthrough to hopefully explain how it all works. The key section of the specification explaining this part is 3.4.1.3.2: http://tools.ietf.org/html/rfc5849#section-3.4.1.3.2

Re: [twitter-dev] Re: Streaming API, Basic Auth Ok, OAuth Unauthorized?

2010-10-25 Thread Ciaran
On Mon, Oct 25, 2010 at 11:28 PM, themattharris thematthar...@twitter.com wrote: Hey everyone, So OAuth encoding can get confusing and lead to situations like this so i'll go through a very verbose walkthrough to hopefully explain how it all works. First, thank you for taking the time to