[twitter-dev] Re: Incorrect signature when calling update url /1/statuses/update.xml

2010-05-22 Thread StephenBnz
Thanks Taylor and Mike.. my hours of heartache are solved :) On May 21, 3:03 am, Taylor Singletary taylorsinglet...@twitter.com wrote: Mike Dice gets the dice :) Glad you figured it out. The best way to think of this is that a POST body being sent to Twitter is by definition URL Escaped when

[twitter-dev] Re: oAuth Echo problems

2010-05-22 Thread Rich
The request to verify_credentials should be a GET and shouldn't contain any of the parameters you intend to send to TwitPic either On May 22, 4:51 am, Miguel de Icaza miguel.de.ic...@gmail.com wrote: Hello, 1) You do not oAuth sign the actual request toTwitPic 2) You make a fake request to

[twitter-dev] What's missing in my signature (%3D ?) for xauth access_token request

2010-05-22 Thread Michel Perrin
I'm trying for many days to make it work for an iPhone App that I'm developing with Titanium Appcelerator. I'm getting a a 401 error at every attempt. I'm basically using a HMAC-SHA1 js library that might be faulty. I checked in many samples on this list that most of the signatures are ending

[twitter-dev] Re: What's missing in my signature (%3D ?) for xauth access_token request solved

2010-05-22 Thread Michel Perrin
Hi I finally found the solution. In fact de %3D was really missing at the end of my signature. I had to ad it as a pad in my HMAC-SHA1javascript lib encoder. Now it works. Hope this self solved can help Michel Perrin Le 22 mai 2010 à 09:48, Michel Perrin a écrit : I'm trying for many days to

[twitter-dev] Problem with library?

2010-05-22 Thread Rushikesh Bhanage
Hi there, I am using PHP TWITTER library by David Billingham version 0.1. Around 8 days back my app was working perfectly with this library but now it's terrific. E.g here what i am getting as a result for ratelimit() method: phptwitter.php [CODE] ?php class twitter{ var

Re: [twitter-dev] Newbie question - please help.

2010-05-22 Thread Abraham Williams
Try using the popular feature of the search method: http://dev.twitter.com/doc/get/search Abraham On Thu, May 20, 2010 at 15:28, gus gus...@gmail.com wrote: Hello, I want to develop a web-based application that will search for the most favorited tweets for a given hashtag. For example, a

[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] Date and Time from created_at fromTwitter API in PHP

2010-05-22 Thread giustin
Hi, In PHP, I can get the formated date. Example: $created_at = new DateTime($result-created_at); $created_at = $created_at-format(Y-m-d); echo $created_at.' - '; Questions: 1) how to get the time like hh:mm:ss from the result-created_at? 2) how to get the time in a specified time-zone, like

Re: [twitter-dev] Date and Time from created_at fromTwitter API in PHP

2010-05-22 Thread Bernd Stramm
On Sat, 22 May 2010 16:27:31 -0700 (PDT) giustin tgiu...@gmail.com wrote: Hi, In PHP, I can get the formated date. Example: $created_at = new DateTime($result-created_at); $created_at = $created_at-format(Y-m-d); echo $created_at.' - '; Questions: 1) how to get the time like

[twitter-dev] Re: What tools do you use?

2010-05-22 Thread roteva
There is qoauth for example on github http://github.com/ayoy/qoauth Bernd On Mar 31, 12:18 pm, Nigel Legg nigel.l...@gmail.com wrote: Working with QTwitLib in Qt on Windows.  Developing desktop apps.  Any one know whether there is a Qt lib for OAuth? Nigel. On 31 March 2010 16:59, Guille

[twitter-dev] Re: Newbie question - please help.

2010-05-22 Thread gus
Thanks, I'll try that. On May 22, 12:35 pm, Abraham Williams 4bra...@gmail.com wrote: Try using the popular feature of the search method:http://dev.twitter.com/doc/get/search Abraham On Thu, May 20, 2010 at 15:28, gus gus...@gmail.com wrote: Hello, I want to develop a web-based