[twitter-dev] Re: Urls shorting connection successes

2010-05-20 Thread Feras Allaou
Well , I tried the URL shorting ! and twitter do this automatically if the status characters are more than 160 ! just 1 problem now ! how can I make sure that twitter API is ok ? is there and OAUTH method to do so ??

[twitter-dev] statuses/update: Expect: 100-Continue header rejected

2010-05-20 Thread Richard Barnett
I've been playing with oacurl https://code.google.com/apis/buzz/v1/oacurl.html and tried to use it to send a tweet. oacurl sends Expect: 100-Continue but Twitter rejects this with we only allow the 100-continue expectation. This seems to violate

[twitter-dev] Twitter does not allow to login

2010-05-20 Thread Picku
Hello, I have an iphone applicaton in which I am using XAuthTwitterEngineDemo source code downloaded from github. Primarily it was working fine. Suddenly it stopped working. When ever I login it gives Authentication error like Please check your username and password and try again. I am giving

[twitter-dev] friends.xml fails for some accounts

2010-05-20 Thread GodStroke
Hello, I'm building a small fun application can be found here: http://godstroke.com/exterminatweet/ I'ts on flash/flex4. I'm using a php proxy page to cross over the crossdomain.xml problem. I send gateway.php?u=username , than it calls the service:

[twitter-dev] Checking Application Rate Limit

2010-05-20 Thread ALSPL
Our app authenticates users with Twitter (using oAuth) and then sends API calls like 1. users show 2. status friends These calls do NOT require authentication but we want them to count against user's limit -- so it goes to 150/hr on users quota and NOT the app quota. However, even after making

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

2010-05-20 Thread Onn E
Hi Taylor, I am using Curl to update status. I use POST method. The new status is not included in the headers, but is included in the POST body and in the signature base string. Also (and this Curl does automatically for me) I am sending the following header: Content-Type:

Re: [twitter-dev] statuses/update: Expect: 100-Continue header rejected

2010-05-20 Thread Cameron Kaiser
[Charset ISO-8859-1 unsupported, filtering to ASCII...] I've been playing with oacurl https://code.google.com/apis/buzz/v1/oacurl.html and tried to use it to send a tweet. oacurl sends Expect: 100-Continue but Twitter rejects this with we only allow the 100-continue expectation. This

[twitter-dev] search api :slowdown or throttling?

2010-05-20 Thread Jeffrey Greenberg
Our app uses the search api extensively and we've noticed that the response time has fallen dramatically for aggregates of search requests in the past days . Is that really the case? Our production app is using basic auth at the moment, and we're wondering if that's a factor in this? jeffrey

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

2010-05-20 Thread Taylor Singletary
Hi Onn, It's best to consider all space characters as %20 when building both your POST body and signature base string -- instead of using or +, just get right down to it as %20. I'll show you how a pretty varied string of characters would be correctly encoded both for the POST body and

[twitter-dev] xml formatted data?

2010-05-20 Thread Rushikesh Bhanage
Hi there, Can somebody here tell me that why I am getting .xml format data as only values and not in key-value pair? Suppose request url is : http://api.twitter.com/1/account/rate_limit_status.xml response is: 143 150

Re: [twitter-dev] search api :slowdown or throttling?

2010-05-20 Thread Taylor Singletary
Hi Jeff, We've been having some general performance issues recently ( http://status.twitter.com/ ). If you're a heavy user of the search API, you may be better served by our Streaming API ( http://apiwiki.twitter.com/Streaming-API-Documentation ). Taylor Singletary Developer Advocate, Twitter

Re: [twitter-dev] xml formatted data?

2010-05-20 Thread Taylor Singletary
Hi Rushi, I haven't seen behavior like this before. How are you reading the response? Are you sure you're looking at the raw response sent in the HTTP request? Are you using a web browser or a library that might be processing the XML incorrectly or rendering the XML as if it were HTML (which is

[twitter-dev] re: json response shape

2010-05-20 Thread wibblefish
Is there anywhere in the documentation that shows what fields you could expect in the json responses for the api methods or is it just a case of hit the service and work out what fields there are to play with from the responses?

Re: [twitter-dev] Re: No oauth_verifier in custom URI (Desktop)

2010-05-20 Thread Taylor Singletary
Hi Jeena, We have a fix queued for deploy sometime in the next week or so. I'll let you know when it's available. Taylor Singletary Developer Advocate, Twitter http://twitter.com/episod On Sun, May 16, 2010 at 2:47 AM, Jeena jeenaparad...@gmail.com wrote: Something new on this topic?

Re: [twitter-dev] Oauth authentication - reg

2010-05-20 Thread Taylor Singletary
Hi Suresh, This library for AS3 supports OAuth, though I can't speak to how well-written or to-spec it is. http://code.google.com/p/oauth-as3/ Taylor Singletary Developer Advocate, Twitter http://twitter.com/episod On Tue, May 18, 2010 at 11:46 AM, Suresh Kumar suresh.aa...@gmail.comwrote:

Re: [twitter-dev] leave API problem

2010-05-20 Thread Chris Thomson
notifications/leave stops the authenticating user from receiving SMS notifications of the specified user's tweets. If you'd like to unfollow a user, you're looking for friendships/destroy: http://dev.twitter.com/doc/post/friendships/destroy -- Chris Thomson On May 20, 2010, at 12:05 PM, roteva

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

2010-05-20 Thread MikeDice417
Taylor, I am having a very similar problem. I think I am missing some crucial point about the encoding method that needs to be used with twitter. THe library I am working on has successfully authenticated using Oauth with twitter. I have my access_token and access_token_secret and I want to update

Re: [twitter-dev] Re: Basic authentication

2010-05-20 Thread Lil Peck
On Tue, May 18, 2010 at 2:13 PM, Eric wetr...@gmail.com wrote: We are using the Streaming API and will only be using our own credentials.  Our experience with OAuth in other services has not been positive, so like TJ says huge hassle for no gain. Although I was able to finally adapt to Oauth

Re: [twitter-dev] Checking Application Rate Limit

2010-05-20 Thread Taylor Singletary
Our implementation here is less than optimal at the moment during the transition from basic auth to OAuth. At least as it currently stands, you should think of API methods that require authentication to mean requires an access token with OAuth. In Basic Auth, it meant that you needed to provide a

[twitter-dev] Is OAuth working for *anyone* out there?

2010-05-20 Thread Dossy Shiobara
For the last few days, *every* single OAuth request I issue has been met with a 401. Also, trying to access this URL, the OAuth app details page for Twitter Karma, results in a fail whale - consistently: http://twitter.com/oauth_clients/details/1574 Is OAuth down for everyone, or just me? --

[twitter-dev] Re: leave API problem

2010-05-20 Thread roteva
On May 20, 12:12 pm, Chris Thomson chri...@chris24.ca wrote: notifications/leave stops the authenticating user from receiving SMS notifications of the specified user's tweets. If you'd like to unfollow a user, you're looking for

Re: [twitter-dev] Is OAuth working for *anyone* out there?

2010-05-20 Thread Taylor Singletary
Hi Dossy, While we have been having some performance issues that should give you occasional 401s, it shouldn't be as widespread as the experience you've been having. When we throw a 401, we typically provide an error message within the body of the response -- if you can share that it would be

Re: [twitter-dev] Is OAuth working for *anyone* out there?

2010-05-20 Thread Dossy Shiobara
On 5/20/10 3:16 PM, Taylor Singletary wrote: While we have been having some performance issues that should give you occasional 401s, it shouldn't be as widespread as the experience you've been having. OK, you know, until *literally* 60 seconds ago, requests for

Re: [twitter-dev] Is OAuth working for *anyone* out there?

2010-05-20 Thread Taylor Singletary
Sorry you're having trouble, Dossy. Can you share the complete path you're using to fetch a request token (with host, domain, protocol, path, and any query parameters), your signature base string, and an authorization header if you're using header-based auth? Taylor Singletary Developer

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

2010-05-20 Thread Cameron Kaiser
FYI - I am writing a .Net based library and so I currently use System.Uri.EscapeDataStringhttp://msdn.microsoft.com/en-us/library/system.uri.escapedatastring.aspxto do my escaping I don't know what that routine is, but if it's not RFC 3986 compliant, it won't work. You might want to roll your

Re: [twitter-dev] Is OAuth working for *anyone* out there?

2010-05-20 Thread Damon Clinkscales
Hey guys, Don't know if this is related, but I was testing a friend's iPad app this morning which uses xAuth. When setting up a new account in his app, the app authorizes in my Connections tab. However, whenever his app tries to use the tokens, we get an immediate HTTP 401. None of the calls

Re: [twitter-dev] Is OAuth working for *anyone* out there?

2010-05-20 Thread Kathy ann Scott
i support dossy too From: Taylor Singletary taylorsinglet...@twitter.com To: twitter-development-talk@googlegroups.com Sent: Thu, May 20, 2010 1:27:26 PM Subject: Re: [twitter-dev] Is OAuth working for *anyone* out there? Sorry you're having trouble, Dossy.

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

2010-05-20 Thread Kathy ann Scott
my code 401 . From: Cameron Kaiser spec...@floodgap.com To: twitter-development-talk@googlegroups.com Sent: Thu, May 20, 2010 1:28:44 PM Subject: Re: [twitter-dev] Re: Incorrect signature when calling update url /1/statuses/update.xml FYI - I am writing

[twitter-dev] Re: oAuth Echo problems

2010-05-20 Thread Greg
Does anyone have a sample code for PHP? I'm having some trouble creating the OAuth headers. On May 19, 10:22 am, uprise78 des...@gmail.com wrote: Works like a charm now. Thanks!

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

2010-05-20 Thread Mike Dice
I will write my own if I have to. But before I do, I'd like to understand as many details as possible about the specifics of Twitter's RFC 3986 behavior. In my experience with RFC specs, they usually provide a lot of detail but they almost always leave some of those details to be interpreted by

[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: website and OAuth

2010-05-20 Thread claudio-g-c
i'm facing an equal scenario like the one above... i'm running a website where 2 to 3 users post status updates to that site which are posted then to twitteraccounts of the corresponding user. so basically i want to send updates to 2 or 3 twitter accounts via a php script. the users send their

Re: [twitter-dev] Is OAuth working for *anyone* out there?

2010-05-20 Thread Damon Clinkscales
Just tried establishing a new connection to a different account with Twitterrific (which I believe uses xAuth) and it worked fine. So, there is presumably a bug in the iPad client I was testing. Unrelated. -damon On Thu, May 20, 2010 at 3:33 PM, Damon Clinkscales sca...@pobox.com wrote: Hey

Re: [twitter-dev] Is OAuth working for *anyone* out there?

2010-05-20 Thread Taylor Singletary
Hi Damon, We've heard some reports of iPads setting their dates/clocks incorrectly -- sometimes back to 1969. If the client application uses the date/time on the machine (rather than querying it from some other source), and the date/time isn't within 5 minutes or so of our clocks, it results in a

[twitter-dev] Suddenly only getting search results from the past 24 hours...

2010-05-20 Thread eys
Hi everyone, I'm relatively new to using APIs. I completed a data visualization project about a month ago and everything worked fine at that time. But now, when I run the app, I only get search results from the past day rather than the past seven days. I don't get any errors when this happens.

Re: [twitter-dev] Is OAuth working for *anyone* out there?

2010-05-20 Thread Damon Clinkscales
On Thu, May 20, 2010 at 4:16 PM, Taylor Singletary taylorsinglet...@twitter.com wrote: Hi Damon, We've heard some reports of iPads setting their dates/clocks incorrectly -- sometimes back to 1969. If the client application uses the date/time on the machine (rather than querying it from some

Re: [twitter-dev] Is OAuth working for *anyone* out there?

2010-05-20 Thread Taylor Singletary
Dossy, to echo my comment to Damon -- can you check the timestamps on your server that is issuing requests? If every call of yours is failing, it's possible that that is why. Taylor Singletary Developer Advocate, Twitter http://twitter.com/episod On Thu, May 20, 2010 at 12:29 PM, Dossy Shiobara

Re: [twitter-dev] Is OAuth working for *anyone* out there?

2010-05-20 Thread Dossy Shiobara
I'll send it to you privately, off-list. On 5/20/10 4:27 PM, Taylor Singletary wrote: Sorry you're having trouble, Dossy. Can you share the complete path you're using to fetch a request token (with host, domain, protocol, path, and any query parameters), your signature base string, and an

Re: [twitter-dev] Is OAuth working for *anyone* out there?

2010-05-20 Thread Dossy Shiobara
AHA! I just checked, somehow my system clock is off (slow) by ~3 hours. Somehow, NTP died and time sync stopped. I'm not sure how that happened, but I restarted ntpd everywhere, and OAuth is working again! Would it be a huge deal to ask that if the OAuth request is being refused due to the

[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: Is OAuth working for *anyone* out there?

2010-05-20 Thread Rich
I'm now starting to get near constant 401's to oAuth echo requests when it was working perfectly. It intermittently works, but litterally 1 in every 10 requests works On May 20, 10:38 pm, Dossy Shiobara do...@panoptic.com wrote: AHA!  I just checked, somehow my system clock is off (slow) by ~3

[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] Fetching @mentions not longer working

2010-05-20 Thread Guillermo
Hello, I used to have this code working, but suddenly I can't fetch @mentions. Here are some sample lines of code and the output I'm getting: $twitter = new TwitterOAuth($TWITTER_CONSUMER_KEY, $TWITTER_CONSUMER_SECRET, $access_key, $secret_key); $feeds =

[twitter-dev] Newbie question - please help.

2010-05-20 Thread gus
Hello, I want to develop a web-based application that will search for the most favorited tweets for a given hashtag. For example, a user may type cerati in a textbox and the application will return the tweets that contain the hashtag #cerati and have been favorited more than x (3, 4, 5) times.

[twitter-dev] Re: Invalid / used nonce but only for certain user names?

2010-05-20 Thread David Novakovic
Hey, We are getting this error, but Twitter is also sending back a valid response. To clarify, if we post an update, the update appears in the timeline but twitter returns a 401 error code (with the nonce message). Same applies to friends timeline sometimes too. Cheers David

Re: [twitter-dev] Fetching @mentions not longer working

2010-05-20 Thread Felix Kunsmann
Am 21.05.2010 um 00:34.43 schrieb Guillermo: $feeds = $twitter-OAuthRequest(http://api.twitter.com/1/statuses/ mention.json, 'GET', array(count=25)); Please note its 'mentions', not 'mention' :) http://dev.twitter.com/doc/get/statuses/mentions Gruß, Felix Kunsmann - fe...@kunsmann.eu --

Re: [twitter-dev] Fetching @mentions not longer working

2010-05-20 Thread Taylor Singletary
Hi Guillermo, In your code here, it shows you requesting from api.twitter.com/1/statuses/mention.json when you should be accessing the plural form api.twitter.com/1/statuses/mentions.json -- which is why you're getting a Not Found error. But to be fair, we have been having some issues this week.

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

2010-05-20 Thread Cameron Kaiser
I will write my own if I have to. But before I do, I'd like to understand as many details as possible about the specifics of Twitter's RFC 3986 behavior. This is the regex I'm using, which is known to work: $x =~ s/([^-0-9a-zA-Z._~])/%.uc(unpack(H2,$1))/eg; In short, letters, numbers,

[twitter-dev] Re: How to use PHP Twitter Search API with the operators OR SINCE HASHTAG etc

2010-05-20 Thread giustin
Somebody may help me? Thanks. On 18 maio, 22:40, giustin tgiu...@gmail.com wrote: Hi, people! I'm here again to question a more thing: We suppose the experiences and links explain above. If I wanna use PHP Twitter Search by Ryan Faerman (http://greenservr.com/projects/

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

2010-05-20 Thread Mike Dice
Thanks a lot Cameron! I was just sitting down to write my lib, planning on doing as you suggest below. On Thu, May 20, 2010 at 5:06 PM, Cameron Kaiser spec...@floodgap.comwrote: I will write my own if I have to. But before I do, I'd like to understand as many details as possible about the

[twitter-dev] Re: Is OAuth working for *anyone* out there?

2010-05-20 Thread Manton Reece
Just a quick follow-up to the comment from Damon above, because it was my app he was testing that broke. It was a client bug. I've confirmed that everything's working great with xAuth after I fixed it. Thanks Taylor for the tip about dates/clocks, too. -- Manton Reece http://www.manton.org/

[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: statuses/update: Expect: 100-Continue header rejected

2010-05-20 Thread Richard Barnett
On May 20, 10:38 pm, Cameron Kaiser spec...@floodgap.com wrote: I've been playing with oacurlhttps://code.google.com/apis/buzz/v1/oacurl.html and tried to use it to send a tweet. oacurl sends Expect: 100-Continue but Twitter rejects this with we only allow the 100-continue expectation.

[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] Favorite create API which is the right one?

2010-05-20 Thread Jebu Ittiachen
As per apiwiki.twitter.com create favorite is http://api.twitter.com/1/favorites/create/*id*.*format* dev.twitter.com says its http://api.twitter.com/*version*/favorites/:id/create.*format *So which is the right one? -- Jebu Ittiachen jebu.ittiac...@gmail.com

[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

Re: [twitter-dev] Re: Is OAuth working for *anyone* out there?

2010-05-20 Thread Shannon Whitley
I've been keeping track of the major oAuth issues that developers report to me. I've also hit these a few times myself. 1. The date/time on your machine must be accurate. Make sure you’ve performed a recent sync with a known time source. 2. If you’re trying to call a Twitter API method

[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!