[twitter-dev] Re: favourites_count on user profile is not updated !

2010-01-22 Thread ono_matope
I've just logged it! http://code.google.com/p/twitter-api/issues/detail?id=1388 On 1月21日, 午前7:36, Orian Marx (@orian) or...@orianmarx.com wrote: Has this been logged in the issue tracker? Seems like something that should be fixed. On Jan 20, 2:38 pm, Tim Haines tmhai...@gmail.com wrote:

[twitter-dev] Re: Search API: new HTTP response code 420 for rate limiting starting 1/18/2010

2010-01-22 Thread Sandip
i am getting this response code in my twitter search application, how to resolve the error ? On Dec 23 2009, 3:44 am, Wilhelm Bierbaum wilh...@twitter.com wrote: We're changing the response code sent back by the Search API when the rate limit has been exceeded. At present, it is impossible to

[twitter-dev] package a new version

2010-01-22 Thread Daniel Would
Hey, I've been making use of python-twitter on maemo to write a twitter app called 'witter'. This evening i wrote some code to use max_id in getUsertimeline but then disocvered whilst it is in your latest source tree, that addition isn't in the last packaged version you did. And whoever added it

[twitter-dev] Retweets now showing

2010-01-22 Thread Sarah Richards
Hi, Today I've noticed that the search query I use: http://search.twitter.com/search.json?q=from%3Aschoolsforhope+OR+from%3AArsenalDotCom+OR+from%3AUN+OR+from%3AUNICEFrpp=3 Is now also returning Re-tweets of posts, which we'd prefer not to show. Is this a change to the search? We've not

[twitter-dev] Twitter whitelisting issue.

2010-01-22 Thread vaseemsidz
Hi, C# code accessing API : HttpWebRequest Request = (HttpWebRequest)WebRequest.Create (http://twitter.com/account/rate_limit_status.xml;); Request.Method = GET; Request.Credentials = new NetworkCredential(auh, xxx); HttpWebResponse Response =

[twitter-dev] Streaming API and older tweets?

2010-01-22 Thread Jorge Vargas
Hello, I'm building an archival tool for a specific hashtag after looking at the API and testing the streaming API and I got it working to pull any new tweets. However it seems the count parameter is restricited. From http://apiwiki.twitter.com/Streaming-API-Documentation#QueryParameters

[twitter-dev] oAuth proposal

2010-01-22 Thread John Meyer
This may have been proposed by somebody sometime in the past (forgive me for not having enough coffee in my system to muster up the energy to search the archives ;-)), but here it goes: what if, rather than a web page URL, we could receive a captcha image and have the user input the code.

Re: [twitter-dev] oAuth proposal

2010-01-22 Thread Josh Roesslein
Not 100% sure what you are suggesting. Are you suggesting for the authorization step that instead of directing the user to twitter instead receive a captcha image which the user inputs that # and we send back to get the access token? I am not sure that is such a good idea, mainly because captchas

Re: [twitter-dev] oAuth proposal

2010-01-22 Thread John Meyer
On 1/22/2010 7:48 AM, Josh Roesslein wrote: Not 100% sure what you are suggesting. Are you suggesting for the authorization step that instead of directing the user to twitter instead receive a captcha image which the user inputs that # and we send back to get the access token? I am not sure that

Re: [twitter-dev] package a new version

2010-01-22 Thread DeWitt Clinton
[cross-posting with the python-twitter list] A new package is definitely in order, as the last one (the one appearing on several downstream distros) is woefully out of date. That said, we'd been hoping to start syncing the library version with an official Twitter API version number -- see this

[twitter-dev] Re: Search API: new HTTP response code 420 for rate limiting starting 1/18/2010

2010-01-22 Thread M. Edward (Ed) Borasky
OK ... next question ... are the rate limit HTTP headers from the REST API now ported to Search and working / documented? 2. HTTP response headers included in all REST API responses which count against the rate limit: * X-RateLimit-Limit the current limit in effect *

[twitter-dev] Chirp on Plancast?

2010-01-22 Thread M. Edward (Ed) Borasky
I discovered this site a day or so ago on Twitter via http://twitter.com/damon/statuses/8033528661 http://plancast.com/a/b3c Anyone, Twitter or otherwise, care to comment / confirm / deny? -- M. Edward (Ed) Borasky http://borasky-research.net/smart-at-znmeb I've never met a happy clam. In

Re: [twitter-dev] Streaming API and older tweets?

2010-01-22 Thread John Kalucki
You can use the Search API to do historical queries when you first start following a hash tag, then switch to Streaming. Search results may be incomplete but sufficient in this case. Currently the count parameter is not supported in conjunction with track on any role, due to both cost and

Re: [twitter-dev] Chirp on Plancast?

2010-01-22 Thread Abraham Williams
This is probably based on this article: http://www.readwriteweb.com/archives/is_twitters_first_conference_coming_april_14th_twi.php On Fri, Jan 22, 2010 at 09:51, M. Edward (Ed) Borasky zzn...@gmail.comwrote: I discovered this site a day or so ago on Twitter via

[twitter-dev] Better understanding of 'signature'

2010-01-22 Thread eco_bach
Hi My OAuth sign In process is failing to verify my signature, so I thought I should at least ensure I understand the meaning of the term. Every time my web application launches, it generates a unique signature, which doesn't change for the current session. ie, if I quit the application, then

Re: [twitter-dev] Better understanding of 'signature'

2010-01-22 Thread Abraham Williams
The signature should be generated for every single request to the Twitter API. It is based on your request URL and parameters. You can read a detailed explanation here http://tools.ietf.org/html/draft-hammer-oauth-08#page-19. Abraham On Fri, Jan 22, 2010 at 11:11, eco_bach bac...@gmail.com

Re: [twitter-dev] Better understanding of 'signature'

2010-01-22 Thread ryan alford
That is one of your problems. The signature needs to be created for each request. Here is how I do it in C#. I know it's not the language you are using, but hopefully it will help on how to create the signature. Then you can use similar libraries in Flash(if there are similar libraries) to make

Re: [twitter-dev] oAuth proposal

2010-01-22 Thread Abraham Williams
How does Twitter verify which user is completing the CAPTCHA? Abraham On Fri, Jan 22, 2010 at 07:06, John Meyer john.l.me...@gmail.com wrote: On 1/22/2010 7:48 AM, Josh Roesslein wrote: Not 100% sure what you are suggesting. Are you suggesting for the authorization step that instead of

Re: [twitter-dev] oAuth proposal

2010-01-22 Thread John Meyer
Good question. I'm not saying that this is the best idea out there, but if desktop (and third party non web apps) developers have problems I tihnk we should at least start entertaining some suggestions. Some may pan out better than others, but at least get the ideas out there. On 1/22/2010

[twitter-dev] Verify credentials and verified =false

2010-01-22 Thread eco_bach
Trying to troubleshoot Oauth sign in. I get an access token returned, and when I request to verify credentials, I DO get all the correct info EXCEPT verified =false; Can anyone tell me the possible sources for this message? Invalid signature, or?

[twitter-dev] Re: Better understanding of 'signature'

2010-01-22 Thread eco_bach
Thanks Ryan

Re: [twitter-dev] Verify credentials and verified =false

2010-01-22 Thread Abraham Williams
The verified element referes to http://twitter.com/help/verified Abraham On Fri, Jan 22, 2010 at 12:45, eco_bach bac...@gmail.com wrote: Trying to troubleshoot Oauth sign in. I get an access token returned, and when I request to verify credentials, I DO get all the correct info EXCEPT

[twitter-dev] Re: geo tag and direct messages?

2010-01-22 Thread Gimme
Raffi, What's road map to implement geo tag in DM? On Nov 23 2009, 11:55 am, Raffi Krikorian ra...@twitter.com wrote: hi! DMs do not yet have the ability to be geotagged - its on our list! I sent couple of DMs with mobile to see what geo is populated. When I retrieve DM's from my

[twitter-dev] Re: Retweets now showing

2010-01-22 Thread GeorgeMedia
What are you coding in? json_decode makes it pretty easy to ignore retweets since their title tag is different. On Jan 22, 3:48 am, Sarah Richards sarah.richard...@googlemail.com wrote: Hi, Today I've noticed that the search query I use:

[twitter-dev] Re: Anyone using phirehose?

2010-01-22 Thread GeorgeMedia
Just in case anyone is having the same issue I had with PHP scripts running from the command line stopping on them, I discovered my problem. I was connecting to the linux server via SSH client remotely. I'd log into a bash shell, CD over to the directory and run my script in the background like

[twitter-dev] RETWEETS in Search API -- FROM filtering is not working

2010-01-22 Thread Ryan G.
Hello, As @Sarah Richards reported earlier, we are being impacted across many of our web properties by a change in behavior in the Search API. Previously use of the FROM filter in the search API would only pull tweets that came directly from the user specified. Now the same search parameters

Re: [twitter-dev] OAuth authentification page on normal login

2010-01-22 Thread Michael J. Ditto
Unfortunately I can't find any place to actually log a ticket. Just lots of FAQs and a tab for checking already open tickets. On Jan 21, 2010, at 3:46 PM, Abraham Williams wrote: Apparently you are supposed to report this to Twitter Support.

[twitter-dev] Twitter Search Italian Language Filter

2010-01-22 Thread loretoparisi
Hello, I opened this thread to discuss about Twitter Search API and Web Search in Italian Language. The language support in the backend simply lacks of something, since a web search on a trending topic with the lang filter: http://search.twitter.com/search?q=haitilang=it will return results in

[twitter-dev] Re: Retweets now showing

2010-01-22 Thread Ryan G.
We are seeing the same behavior. Anyone know what's going on? On Jan 22, 4:48 am, Sarah Richards sarah.richard...@googlemail.com wrote: Hi, Today I've noticed that the search query I use: http://search.twitter.com/search.json?q=from%3Aschoolsforhope+OR+from... Is now also returning

[twitter-dev] Confused about OAuth 1.0 vs 1.0a and Twitter API docs

2010-01-22 Thread Marc Hedlund
I'm confused about the OAuth docs linked to from http://apiwiki.twitter.com/ -- especially these: http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-oauth-request_token http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-oauth-access_token Both of these link to the OAuth 1.0 spec for a list

Re: [twitter-dev] Confused about OAuth 1.0 vs 1.0a and Twitter API docs

2010-01-22 Thread ryan alford
If you look at the very top of the 1.0 spec, you will see a yellow box... This specification was obsoleted by OAuth Core 1.0 Revision Ahttp://oauth.net/core/1.0a on June 24th, 2009 to address a session fixation attackhttp://oauth.net/advisories/2009-1/. The OAuth Core 1.0 Revision A specification

Re: [twitter-dev] OAuth authentification page on normal login

2010-01-22 Thread Abraham Williams
You can open a ticket here: http://bit.ly/twicket http://bit.ly/twicketMake sure you are signed in. Abraham On Fri, Jan 22, 2010 at 09:02, Michael J. Ditto di...@progressnowcolorado.org wrote: Unfortunately I can't find any place to actually log a ticket. Just lots of FAQs and a tab for

Re: [twitter-dev] Re: geo tag and direct messages?

2010-01-22 Thread Raffi Krikorian
its on the road map, but its a low priority feature right now! On Fri, Jan 22, 2010 at 11:32 AM, Gimme qwenx...@gmail.com wrote: Raffi, What's road map to implement geo tag in DM? On Nov 23 2009, 11:55 am, Raffi Krikorian ra...@twitter.com wrote: hi! DMs do not yet have the ability

Re: [twitter-dev] Confused about OAuth 1.0 vs 1.0a and Twitter API docs

2010-01-22 Thread Marc Hedlund
Yup, I know, that's what I'm asking. Why not link to and tell people to use 1.0a (or the IETF draft) rather than 1.0? For the record I checked all the other code examples and none of them support oauth_verifier (some do send oauth_callback with the first request), unless I'm missing something.

Re: [twitter-dev] Re: Retweets now showing

2010-01-22 Thread Sarah Richards
OK! Thanks for the reply. Sarah On Fri, Jan 22, 2010 at 5:45 PM, twitterdoug dc...@twitter.com wrote: Hi Sarah- This is a bug. We'll be fixing it as soon as possible! On Jan 22, 1:48 am, Sarah Richards sarah.richard...@googlemail.com wrote: Hi, Today I've noticed that the search

Re: [twitter-dev] Confused about OAuth 1.0 vs 1.0a and Twitter API docs

2010-01-22 Thread ryan alford
most likely, Twitter has other things to do and updating the API documentation isn't very high on the list. Ryan On Fri, Jan 22, 2010 at 4:40 PM, Marc Hedlund marcprecip...@gmail.comwrote: Yup, I know, that's what I'm asking. Why not link to and tell people to use 1.0a (or the IETF draft)

Re: [twitter-dev] Confused about OAuth 1.0 vs 1.0a and Twitter API docs

2010-01-22 Thread Abraham Williams
http://github.com/abraham/twitteroauth/ supports oauth_varifier. Abraham On Fri, Jan 22, 2010 at 13:40, Marc Hedlund marcprecip...@gmail.com wrote: Yup, I know, that's what I'm asking. Why not link to and tell people to use 1.0a (or the IETF draft) rather than 1.0? For the record I checked

[twitter-dev] oauth - Authentication Credentials missing or incorrect

2010-01-22 Thread Twitter-Developer
Hi, Well I have been successfully using oauth for authenticating my application subscribers. But since this evening i am suddenly getting the strange 401 error, where as nothing has changed, i can see and verify the ouathSecret and ouathToken saved as it is in the database and they are passing

Re: [twitter-dev] Confused about OAuth 1.0 vs 1.0a and Twitter API docs

2010-01-22 Thread Marc Hedlund
Ah, sorry, my mistake. -M On Jan 22, 2010, at 1:57 PM, Abraham Williams wrote: http://github.com/abraham/twitteroauth/ supports oauth_varifier. Abraham On Fri, Jan 22, 2010 at 13:40, Marc Hedlund marcprecip...@gmail.com wrote: Yup, I know, that's what I'm asking. Why not link to and

[twitter-dev] Re: RETWEETS in Search API -- FROM filtering is not working

2010-01-22 Thread Mack D. Male
This is a problem when filtering by geo as well - searching for tweets near:vancouver also returns retweets of users in vancouver by users in other locations. On Jan 22, 10:18 am, Ryan G. ryan.gar...@gmail.com wrote: Hello, As @Sarah Richards reported earlier, we are being impacted across many

[twitter-dev] Re: Chirp on Plancast?

2010-01-22 Thread M. Edward (Ed) Borasky
Actually, I spotted the rumor in a tweet, went to Plancast, found the Plancast site, and then sent a tweet to Marshall, who then apparently went to Quora to ask. What ever happened to picking up the phone and calling your friend in the Marketing department? ;-) So - no comment, confirmation,

Re: [twitter-dev] Re: geo tag and direct messages?

2010-01-22 Thread Michael Steuer
And in_reply_to_dm_id for that matter? On Jan 22, 2010, at 11:32 AM, Gimme qwenx...@gmail.com wrote: Raffi, What's road map to implement geo tag in DM? On Nov 23 2009, 11:55 am, Raffi Krikorian ra...@twitter.com wrote: hi! DMs do not yet have the ability to be geotagged - its on our

Re: [twitter-dev] Re: Anyone using phirehose?

2010-01-22 Thread Jeffrey Greenberg
You need to look into 'nohup'. jeffrey greenberg On Fri, Jan 22, 2010 at 10:45 AM, GeorgeMedia georgeme...@gmail.com wrote: Just in case anyone is having the same issue I had with PHP scripts running from the command line stopping on them, I discovered my problem. I was connecting to the

Re: [twitter-dev] Streaming API and older tweets?

2010-01-22 Thread Jorge Vargas
Thank you for your very complete answer John. That is exactly what I was thinking. From what I can tell my tag isn't very high traffic so I'm going to go check the search API to pull the older results and leave my current Streaming client running to pull anything new. Thank you! On Fri, Jan 22,

[twitter-dev] Re: Retweets now showing

2010-01-22 Thread twitterdoug
Just as a follow up - we've found the bug, and we have a fix. This likely won't fix the few mistaken results you've already seen, but will prevent any new mis-attributed retweets from showing up in the results. -Doug On Jan 22, 1:16 pm, Sarah Richards sarah.richard...@googlemail.com wrote: OK!