[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-22 Thread Jerry Thompson
Hi Rich, TwitrPix is in the process of converting to oAuth and we'll be finalizing our oAuth Echo APIs very shortly. It was my understanding that there would be some type of oAuth Echo console so we could test our implementation, but I haven't received final word back yet from Twitter. I think

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-22 Thread Craig Hockenberry
yFrog supports OAuth echo, but with a different technique than Raffi proposed on his blog: http://code.google.com/p/imageshackapi/wiki/TwitterAuthentication I also know that img.ly is working on the echo endpoint. -ch On May 20, 10:38 pm, Rich rhyl...@gmail.com wrote: This are the providers I

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-20 Thread Justin Hart
This is now active on Twitgoo. You can see the documentation here: http://twitgoo.com/docs/Content/Developer/upload.htm On May 19, 9:05 am, Justin Hart onyxra...@gmail.com wrote: I am the lead dev on Twitgoo and I just built full echo support for 'upload' there.  Its on the beta site right now,

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-20 Thread Rich
Look's like TwitPic's oAuth Echo has broken again, can anyone else confirm? On May 20, 9:49 pm, Justin Hart onyxra...@gmail.com wrote: This is now active on Twitgoo. You can see the documentation here:http://twitgoo.com/docs/Content/Developer/upload.htm On May 19, 9:05 am, Justin Hart

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-20 Thread Rich
Scrap that, looks like oAuth echo is almost totally broken right now, only Twitgoo seems to be working, both MobyPicture and TwitPic constantly return a 401, and on the very odd occasion one does make it through Twitter itself returns a 500 status error (even though it actually posts the message)

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-20 Thread Rich
A bit more debugging and oAuth Echo only seems to be broken over SSL, change the realm, provider and signing request to http://api.twitter.com/1/account/verify_credentials.json instead of https://api.twitter.com/1/account/verify_credentials.json and it'll go through On May 20, 11:23 pm, Rich

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-20 Thread Greg
Does anyone have an example of a PHP Library to interact with these libraries via Oauth Echo? I would be interested or to see some sample code. On May 20, 6:44 pm, Rich rhyl...@gmail.com wrote: A bit more debugging and oAuth Echo only seems to be broken over SSL, change the realm, provider and

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-20 Thread Steve C
Hi Rich- Nice catch! During one of our deployments today, we mistakingly switched the OAuth Echo API to use Twitter's Non-SSL Endpoint. I just pushed a fix for it- can you let me know if everything works correctly for you again? (Coincidently, the deployment that turned off SSL for the API was

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-20 Thread Rich
It's working great now. Many thanks Steve On May 21, 4:22 am, Steve C st...@twitpic.com wrote: Hi Rich- Nice catch! During one of our deployments today, we mistakingly switched the OAuth Echo API to use Twitter's Non-SSL Endpoint. I just pushed a fix for it- can you let me know if everything

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-20 Thread gotosleep
Has anyone gotten OAuth Echo to work with Twitpic or Twitgoo? So far, my attempts have been a complete failure. No matter what I try, I get a 401 back with the error message Authentication needed. On May 20, 6:29 pm, Greg gregory.av...@gmail.com wrote: Does anyone have an example of a PHP

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-20 Thread Rich
Yeah they work fine, remember you don't oAuth sign the ACTUAL request to Twitpic or Twitgoo, you make a fake called to Twitter's verify_credentials page, take that header and add it to the one your send to Twitpic with a different name On May 21, 1:32 am, gotosleep gotosl...@gmail.com wrote: Has

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-20 Thread Rich
This are the providers I currently user that don't seem to have switched to oAuth Echo yet - yFrog - Raffi mentioned they have been working with them, but I don't see the end point yet - TweetPhoto - they have an implementation where you send your consumer secret key but I'm not going to do that!

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-19 Thread Justin Hart
I am the lead dev on Twitgoo and I just built full echo support for 'upload' there. Its on the beta site right now, so if you want to test, please contact me for the info, otherwise it should be out by the end of the week. It will have full support of header, query string and multipart body

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-18 Thread uprise78
Does TwitPic's oauth echo work? The example on the api.twitpic.com site fails due to the header in the curl call being totally wrong (they put key=value instead of key:value). Changing that to the correct header still fails for me. Has anyone gotten this to work? If so, do you mind posting a

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-18 Thread uprise78
I *just now* got a response from Twitpic and they updated the docs so maybe it will work nowI'll test in a few hours.

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-18 Thread Rich
I don't use curl but send it with multipart form data and it's been working with TwitPic since sunday. And it works great to be honest once you've got the oAuth Echo logic in place. I hope the other providers get their acts in order and give us enough time to get through the Apple Approval

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-18 Thread uprise78
On May 18, 2:08 pm, Rich rhyl...@gmail.com wrote: I don't use curl but send it with multipart form data and it's been working with TwitPic since sunday.  And it works great to be honest once you've got the oAuth Echo logic in place.  I hope the other providers get their acts in order and give

[twitter-dev] Re: oAuth Echo Enabled Providers

2010-05-18 Thread Rich
You don't sign the request to TwitPic at all. You make a fake signature as if you calling the verify_credentials end point and add that to the http header On May 18, 10:23 pm, uprise78 des...@gmail.com wrote: On May 18, 2:08 pm, Rich rhyl...@gmail.com wrote: I don't use curl but send it with