[twitter-dev] Search API Rate Limit??

2011-07-02 Thread Tdwoong
My interactive exhibition program send search query per 5 sec. (http:// search.twitter.com/search.atom?q=love OR hate&since_id) And parcing only firstpage(wthin 15 search result). I received "Timeoutexception" when 3~4 hours after running. I want to know why ㅜㅜ

Re: [twitter-dev] Search Api limit

2011-06-24 Thread Matt Harris
Hi Alessandro, We've produced a small guide on using search that explains the search rate limits a little more. You can find the page here: https://dev.twitter.com/pages/using_search In it we say: The Rate Limits for the Search API are not the same as for the REST API. When using the Search

Re: [twitter-dev] Search API for getting tweet counts by date?

2011-06-24 Thread Matt Harris
Hi, The Search API only keeps it's index for about a week so searches older than that are not possible. To perform analysis of Tweets like you ask you will can monitor them as they happen through the Streaming API. Alternatively some third party services maybe able to offer this information. Best

[twitter-dev] Search Api limit

2011-06-24 Thread Alessandro
Hi I'm using the search api (for example: http://search.twitter.com/search.rss?q=%23juventus&rpp=100&page=4) I read here: http://search.twitter.com/api/ this: "We do not rate limit the search API under ordinary circumstances, however we have put measures in place to limit the abuse of our API. If

[twitter-dev] Search API for getting tweet counts by date?

2011-06-23 Thread jburke
If I want to get tweet counts (for a particular query) by date over a particular date range, does the search API support? Is the date range limited to the tight range that is in place for search that returns tweets? -- Twitter developer documentation and resources: https://dev.twitter.com/doc API

[twitter-dev] Search API

2011-06-16 Thread Trevor Dean
I would like to go back to the previous day and pull all tweets that match my search criteria, for example I would like to get all tweets from yesterday that have "stanley cup". When I do this I only seem to be able to get a certain number of tweets back. What's the best approach to this? Thanks

Re: [twitter-dev] Search API Rate Limiting

2011-06-02 Thread yaemog Dodigo
Hi, sounds like you really want to look into the streaming API instead. http://dev.twitter.com/pages/streaming_api_methods#statuses-filter cheers -m On Thu, Jun 2, 2011 at 1:00 PM, HRyba wrote: > I'm developing an application that uses the Twitter Search API. The > app searches Twitter for ma

[twitter-dev] Search API Rate Limiting

2011-06-02 Thread HRyba
I'm developing an application that uses the Twitter Search API. The app searches Twitter for many (at least a couple thousand) specific keywords in real time. A server would be set up to get the results for the many keywords in tweets and store them in a database that the application would access

[twitter-dev] Search API throwing an error when no user-agent defined

2011-05-20 Thread Marsh Gardiner
Here's a strange issue… When I use the Apigee API Console to make a request, it throws a 400 Bad Request error (example), unless I define the User-Agent header (example

Re: [twitter-dev] search api limit

2011-05-19 Thread Arnaud Meunier
Hey Max, That looks pretty extreme! What's your use case? Why would you need to make that much queries? Are you going to use the Search API or the website? If you're using the API, Did you consider using the Streaming API "statuses/filter" method with the "track" parameter? http://dev.twitter.com/

Re: [twitter-dev] search api limit

2011-05-19 Thread Alex Feinberg
Hi, Max, First of all, this is just from personal experience with my own application, so, take it with all the necessary grains of salt about rate limits changing based on traffic and time of day, your searches being different from mine, etc, etc. My experience has been that I tend not to run int

[twitter-dev] search api limit

2011-05-19 Thread Max
Hello, for an art installation i will be having 4 cpus running the search twitter query (search.twitter.com) . because the rate limit is not made public, if you could authorize my proposed request frequency. if i have each computer (on the same IP adress) calling the search api every 10 seconds, th

[twitter-dev] Search API bug? (strange results)

2011-04-22 Thread Brian Medendorp
I wanted to get some counts for a number of domains, so I wrote a simple script to perform a search with a domain name and loop through all of the pages, counting up the number of results. This works fine usually, but I have discovered that occasionally, the API returns rather strange results: ?rp

[twitter-dev] Search API return 402 "You have been rate limited. Enhance your calm" each time

2011-04-18 Thread kghate
I am writing a new application and all was going smoothly until I deployed the application and am getting a 402 on all requests! The application searches based on both geo-location and query terms. Am literally making only test api calls from the application (less than 10 every hour) and each one

[twitter-dev] Search API OR queries returning wrong results

2011-04-01 Thread Aaron Rankin
Searches using OR where the result type is "recent" are returning wrong results. For example, if I search for (ipad kid), I see results from a minute ago. If I search for (ipad backseat), the most recent tweet is about 5 hours ago. Then, if I search (ipad kid) OR (ipad backseat), only the (ipad bac

Re: [twitter-dev] Search API not delivering popular tweets

2011-03-28 Thread Taylor Singletary
I'm not aware of any issues and see "popular tweets" returned both when requested in mixed and popular-only modes: GET http://search.twitter.com/search.json?q=google&result_type=mixed GET http://search.twitter.com/search.json?q=google&result_type=popular Are you including the result_type paramete

[twitter-dev] Search API not delivering popular tweets

2011-03-28 Thread Ana
Dear all Is it correct that the Twitter Search API is not delivering popular tweets at the moment (and within the last days)? Thank you very much, Ana -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhan

Re: [twitter-dev] Search API: Secure profile image URLs

2011-03-23 Thread Jacob Page
That worked perfectly. Thanks a whole lot! On Wed, Mar 23, 2011 at 08:38, Arnaud Meunier wrote: > Hey Jacob, > Valid SSL certificates are installed on si[0-5].twimg.com subdomains. On > your SSL served pages, you could simply replace "http://a"; with > "https://si". Example for the @twitter acco

Re: [twitter-dev] Search API: Secure profile image URLs

2011-03-23 Thread Arnaud Meunier
Hey Jacob, Valid SSL certificates are installed on si[0-5].twimg.com subdomains. On your SSL served pages, you could simply replace "http://a"; with "https://si";. Example for the @twitter account: - HTTP: http://a3.twimg.com/profile_images/1124040897/at-twitter_normal.png - HTTPS: https://si3.tw

[twitter-dev] Search API: Secure profile image URLs

2011-03-22 Thread Jacob
Our application can sometimes be rendered within an HTTPS URL. To avoid mixed security content warnings in browsers, we were able to selectively convert our search API calls so they use HTTPS. However, the profile image URLs returned by the search API are HTTP URLs, and changing the protocol to H

Re: [twitter-dev] Search API: retrieve the number of times a particular URL was tweeted?

2011-03-22 Thread Stuart Dallas
Hi Doug, Tweetmeme have an API that can give you this info. http://help.tweetmeme.com/2009/04/07/api-documentation/ -Stuart -- Stuart Dallas 3ft9 Ltd http://3ft9.com/ On Tuesday, 22 March 2011 at 14:13, doug wrote: > The Facebook API has a FQL query that allows one to retrieve the > number o

Re: [twitter-dev] Search API: retrieve the number of times a particular URL was tweeted?

2011-03-22 Thread Taylor Singletary
Hi Doug, We don't have a search result counting API available at this time. One approach would be to prepare ahead of time and use the Streaming API's track filter on the URL you're interested in, keeping the stream open and counting tweets featuring your URL as it spreads on Twitter. http://dev.t

[twitter-dev] Search API: retrieve the number of times a particular URL was tweeted?

2011-03-22 Thread doug
The Facebook API has a FQL query that allows one to retrieve the number of "Likes" or "Shares" a particular URL got. I can certainly find a way to use the Twitter Search API to retrieve the raw statuses that mention a particular URL... but it seems like overkill when all I would like is the count.

Re: [twitter-dev] Search API: Can the geocode param only give me lat/long results?

2011-03-21 Thread Augusto Santos
Streaming API will give what you need through locations method. http://dev.twitter.com/pages/streaming_api_methods#locations On Mon, Mar 21, 2011 at 12:22 PM, Stu wrote: > Hi, > I have a pre-question before my question. With the search API's > geocode based search, if it falls back on the user'

[twitter-dev] Search API: Can the geocode param only give me lat/long results?

2011-03-21 Thread Stu
Hi, I have a pre-question before my question. With the search API's geocode based search, if it falls back on the user's profile information does it use GPS positions in their profile or some location such as 'London'. The problem is that I need much greater precision than that. Thus, if I perfo

[twitter-dev] Search API rate limit change?

2011-03-18 Thread zaver
Hello, After the latest performance issues with the search api i have been seeing a lot of 420 response codes.From yesterday until now i only get 420 responses on the every search i make. In particular, i search for about 100 keywords simultaneously every 6 mins. Why is this happening? Was there a

[twitter-dev] search API and until parameter

2011-03-17 Thread Yusuke Yamamoto
Hi, What is the timezone used by the search API? The first tweet hit with q=#todoke&until=2011-03-16 is id=48156449427300352 which is created at "Wed Mar 16 22:59:26 + 2011". But there are tweets posted later on that day that should hit with the query such as id=48171154753601536 which is c

[twitter-dev] Search API: Searching world twits (location enabled)

2011-03-04 Thread mahorad
Does any body know how is it possible to: search a keyword among all twits in the whole world, while each returned twit contains the location it was generated? I know that twits can be searched within an area passing lat,lon and radius but I want to search the keyword within the twits in the whole

Re: [twitter-dev] Search API uses different pool of user ids?

2011-02-28 Thread Marc Mims
* ce [110228 12:01]: > A totally different user! There appears to be no way to get the > proper numerical id from the search API. Am I doing something wrong > or is this a known issue and I should just rewrite to use their screen > name to look up users instead? See the "Warning" here: http://d

[twitter-dev] Search API uses different pool of user ids?

2011-02-28 Thread ce
When I use the search API I get a result like this: http://search.twitter.com/search.json?q=twitter { "from_user_id_str": "142342329", "profile_image_url": "http://a1.twimg.com/profile_images/ 1257749535/leo_map2_normal.jpg", "created_at": "Mon, 28 Feb 2011 19:

[twitter-dev] Search API usage with users on shared IP

2011-02-27 Thread magnus
Hi all, I tried to search the archives for an answer to this, but I'm still a bit unclear (please excuse my inexperience!). I'm working on an education tool that integrates with Twitter, and I want to allow users to create/track hashtags in near realtime (pretty much like tweetgrid.com). Specifi

Re: [twitter-dev] Search API http response code 500

2011-02-25 Thread Matt Harris
Hey Zaver, Repeating the query should work. If the error is persistent let us know what the term is so we can take a look. Best, @themattharris On Feb 25, 2011, at 10:09, zaver wrote: > Hello, > > I ve been getting a 500 response code lately on searching some > keywords. How do i handle th

[twitter-dev] Search API http response code 500

2011-02-25 Thread zaver
Hello, I ve been getting a 500 response code lately on searching some keywords. How do i handle that code? Any help is greatly appreciated. Zaver -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancemen

[twitter-dev] Search API vs Phoenix search (speed of indexing)

2011-02-25 Thread Dan
Hi, I am developing a browser-based client side app that is making use of the search API. I have noticed for certain terms, in the documented API it is very slow to index new tweets : e.g. right now the term 'Glazers' is trending in the UK, and the most recent tweet for that search term is six

[twitter-dev] Search API the "public" alternative to URL count API?

2011-02-13 Thread Martin Cronjé
Hi there, I am busy writing an aggregator and I am looking at using the Twitter API to get URL counts. I seems that "public" developers are not allowed to use the URL counting API based on the Tweet Button FAQ. Which leaves me with not other option but to use the search API for URL counting. Usin

[twitter-dev] Search API intermittently returning invalid results

2011-02-09 Thread chouck
I've been using curl to access search.twitter.com and recently I've noticed that occasionally it is returning invalid tweets. I'm searching for a query-term that shows up very infrequently in the tweet stream, and am using the curl command: curl "http://search.twitter.com/search.atom?q=query- ter

[twitter-dev] Search API rate limit on some keywords

2011-02-01 Thread zaver
Hello, I am experimenting with the Search API using php curl to get results on multiple keyword searches (about 130). It works fine, although i have observed that sometimes some of the keywords get a 420 code? Any ideas why is this happening? Let me know if you want any more details on my part. Th

[twitter-dev] Search API or RSS feed?

2011-01-09 Thread lilpirate
Hello people, I'm building a twitter application based upon your followers' tweets. I need to fetch tweets of all followers for a user. I was using status/user_timeline initially. But after interacting with @twitterapi, I found there are better ways to do this.They suggested I first followers/i

[twitter-dev] Search API and location

2010-12-28 Thread Randomness
I just tried to construct a query that searches for users by location, as it is registered in the location field of their profiles. I had no luck and it seems this is not possible. Am I just overlooking something, or is their another way to find people by location? -- Twitter developer documentat

Re: [twitter-dev] Search API "from_user_id" doesn't match up with the proper Twitter "user_id"

2010-12-22 Thread Robbie Coleman
I think twitter's response to this call to arms should be the HTTP Status Code: 420 - Chill ;-} -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/i

Re: [twitter-dev] Search API "from_user_id" doesn't match up with the proper Twitter "user_id"

2010-12-22 Thread Adam Green
I'm sure Taylor or Matt will reply politely to this rant. I don't work for Twitter, so I'd like to take on your attitude of entitlement directly towards this free service. Your basic approach can be summed up as "How dare Twitter have problems in a totally free API that I can use to build a busines

[twitter-dev] Search API "from_user_id" doesn't match up with the proper Twitter "user_id"

2010-12-22 Thread Corey Ballou
I just wanted to bring group-wide awareness to the fact that search results from Twitter do not return an actual user_id. This has been a known defect (and yes, I do believe it's a *very large* defect) going on over 2 years now. This is a call to arms to get this shit fixed. I can't believe it's m

Re: [twitter-dev] Search API cURL strangeness

2010-12-14 Thread Tom van der Woerdt
And your UserAgent is? Tom On 12/14/10 5:02 PM, Brian Medendorp wrote: I'm building an application that uses the search API to check for data related to particular domains, and suddenly (within the last week or so), I have started to experience a strange problem. Some of my requests are coming

[twitter-dev] Search API cURL strangeness

2010-12-14 Thread Brian Medendorp
I'm building an application that uses the search API to check for data related to particular domains, and suddenly (within the last week or so), I have started to experience a strange problem. Some of my requests are coming back with a cURL error "Empty reply from server", but only when I am search

[twitter-dev] Search API Optional lang Has Problem.

2010-11-28 Thread Jeong Hoon Kim
About 5 days ago, Suddenly Search API Optional lang had no results..My optional lang is ko. Did anybody apply Search API lang option? Did the results come out correctly? -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitte

[twitter-dev] Search API doesn't work fine

2010-10-11 Thread ChungXa
I've searched for "@DeRecyclage" (http://search.twitter.com/ search.atom?q=%40DeRecyclage) but it doesn't show full result. Please check with this link to compare http://twitter.com/Kemgoo Thank you ! -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via T

Re: [twitter-dev] Search API - Show From user but not @replies

2010-09-23 Thread Matt Harris
Hi Dan, Search is fairly basic in it's use of operators so the query you are trying to do isn't possible. If all you really want is a users timeline have you tried: http://api.twitter.com/1/statuses/user_timeline.json?screen_name=username_you_want This will give you all tweets sent by a par

[twitter-dev] Search API - Show From user but not @replies

2010-09-23 Thread Dan
Is it possible using a search query to show tweets from a user but not include their @ replies? I can see that it's possible to negate a query (such as @user) but not possible to use a wildcard (to negate all @users) so how could you do this? -- Twitter developer documentation and resources: htt

[twitter-dev] Search API is acting weird.

2010-09-21 Thread Gena01
So I've been messing with the search API and I am seeing some strange stuff going on. When I request: http://search.twitter.com/search.json?q=to:ev I get normal results. If i request http://search.twitter.com/search.json?q=to:a or http://search.twitter.com/search.json?q=to:gena01 then I get a wa

Re: [twitter-dev] Search API

2010-09-17 Thread Taylor Singletary
Hi Travis, The Search API's corpus of tweets is a rolling window that generally only goes back about 5 days, sometimes less depending on tweet velocity. We hope to some day offer a much larger pool of tweets for searching. Taylor On Thu, Sep 16, 2010 at 10:50 PM, Travis Beauvais wrote: > I have

[twitter-dev] Search API

2010-09-16 Thread Travis Beauvais
I have been experimenting with the search API and every search I try only goes back to Spet 12 (calls being made on Sept 16). No matter how many results there are it always stops on Sept 12. Is there a limit I don't know about? -- Twitter developer documentation and resources: http://dev.twitter.

Re: [twitter-dev] search api - since date format

2010-09-09 Thread Taylor Singletary
Hi Arian, A date string really is the only valid format for this function. If you want to cut the search off by certain times of day, you're best off post-processing your results for that kind of resolution. Thanks, Taylor On Thu, Sep 9, 2010 at 8:15 AM, arian wrote: > hi guys, I have a questi

[twitter-dev] search api - since date format

2010-09-09 Thread arian
hi guys, I have a question about search api about 'until' parameter to be more exactly according to documentation until is "Optional. Returns tweets generated before the given date. Date should be formatted as -MM- DD. example: http://search.twitter.com/search.json?until=2010-03-28"; I need t

Re: [twitter-dev] Search API not returning tweet

2010-08-26 Thread Matt Harris
When I run your queries above I see, in both cases, the Tweet from monkeyhelpr. When you ran the queries it may have been the Tweet was new and the caching on search.twitter.com hadn't fully updated. If you need real-time results you may want to consider using the Streaming API. The query you are

[twitter-dev] Search API not returning tweet

2010-08-26 Thread Rob Lee
I'm trying to understand why this query doesn't return a tweet : http://search.twitter.com/search.json?q=%23tea%20from:jamesb%20from:frankieroberto%20from:andrewpendrick%20from:monkeyhelpr%20from:topfife But this one does : http://search.twitter.com/search.json?q=%23tea%20from:jamesb%20from:fran

Re: [twitter-dev] Search API problems...

2010-08-24 Thread Matt Harris
There are no known issues with search and running your query works for me. Hey Ben, The Search API does not use authentication and is rate limited differently to the 150 IP requests allowed on the REST API. If you are rate limited on the Search API we would return an error telling you rather than

[twitter-dev] Search API problems...

2010-08-24 Thread Ben
Hey guys - I'm curious as to know whether there's any problems with the search API? I'm curling from a PHP script, and it keeps timing out with 'couldn't connect to host' errors when my URL is a search (eg: http://search.twitter.com/search.atom?q=test). Interestingly, if I curl either of the foll

[twitter-dev] Search API bug when using lang parameter

2010-08-11 Thread germboy
When I append the "lang" parameter to my searches, twitter responds with a small handfull of results, then aborts with the error: "warning":"adjusted since_id to 20868007278 due to temporary error". However, once I take out the "lang" parameter, I receive the expected results. You can see what I'm

Re: [twitter-dev] Search API issue involving server cookies

2010-08-05 Thread Taylor Singletary
Hi Mike, Thanks for reporting this bug, I'm able to reproduce and I'll report it to the team. Thanks! Taylor On Wed, Aug 4, 2010 at 5:35 PM, Mike Ward wrote: > There appears to be an issue with Twitter's API and cookies. The > following yields no results found: > > > GET http://search.twitter.c

[twitter-dev] Search API issue involving server cookies

2010-08-04 Thread Mike Ward
There appears to be an issue with Twitter's API and cookies. The following yields no results found: GET http://search.twitter.com/search.json?q=%23tweetz HTTP/1.1 Accept: */* Accept-Language: en-us Content-Type: application/x-www-form-urlencoded UA-CPU: AMD64 Accept-Encoding: gzip, deflate User-A

[twitter-dev] [search api] is it possible to search replies from a certain status_id?

2010-07-21 Thread arian
hi guys, I need monitor replies from certain status. I would like to use search api, but according to search api doc it's impossible. I only ask you to know for sure. for example, I would like to be able ask for search api for replies from a status providing in_reply_to_status_id value. the only

[twitter-dev] Search API -Timezones problem

2010-07-06 Thread Ramanean
In Search API ,always the created_at time is getting displayed in UTC,So it creates more problems for me when I am trying to display latest search results as it shows same time for a query Whether there are any plans to display localtime of the user in search api? For E.g http://search.twitter.c

Re: [twitter-dev] Search API rate limit

2010-07-06 Thread Matt Harris
Hi Shan, The Search API is anonymous so authenticating makes no difference to the rate limit there. If you are requesting a lot of information from the search API you may want to look at the streaming API instead: http://dev.twitter.com/pages/streaming_api The majority of search cases can be hand

[twitter-dev] Search API rate limit

2010-07-06 Thread Ramanean
I am developing a normal twitter search application Inorder to beat the search rate limit if I ask a user to authenticate whether that would be helpful? Whether the calls made by the user for search api will be counted in the user's account ? or whether that would be still counted as a call fro

Re: [twitter-dev] Search API returns only 15 results, even if rpp=100?

2010-06-22 Thread Jonathan Reichhold
There are plenty of results for this, but your url is encoded incorrectly http://search.twitter.com/search.atom?q=microsoft+OR+%23ms+OR+lnk.ms+OR+msft+OR+%23surface&rpp=100 # is %23 in url-encoded form As the query exists it is "microsoft OR " with a page reference. Jonathan On Tue, Jun 22, 20

Re: [twitter-dev] Search API returns only 15 results, even if rpp=100?

2010-06-22 Thread John Kalucki
Try a less complex query, and you should get more results. On Mon, Jun 21, 2010 at 8:39 PM, Josh Santangelo wrote: > For example, this query: > https://search.twitter.com/search.atom?q=microsoft+OR+#ms+OR+lnk.ms+OR+msft+OR+#surface&page=1&rpp=100&result_type=recent > > Is there any way to get a

[twitter-dev] Search API returns only 15 results, even if rpp=100?

2010-06-22 Thread Josh Santangelo
For example, this query: https://search.twitter.com/search.atom?q=microsoft+OR+#ms+OR+lnk.ms+OR+msft+OR+#surface&page=1&rpp=100&result_type=recent Is there any way to get a larger number of results per page? thanks, -josh

[twitter-dev] Search API reporting temporary error

2010-06-15 Thread Mack D. Male
There seems to be something wrong with the search API. It is only returning a tiny subset of what I would expect (after looking at the same query on search.twitter.com for instance) and is reporting the following: "adjusted since_id to 16201119561 due to temporary error" Any word on what this tem

[twitter-dev] Search API lang temporary error

2010-06-08 Thread Unfair
I'm seeing a temporary error adjusting the since_id on every search query if I specify lang=en and it wipes out many valid results. I can tell my backend script to filter out the other languages, but I'm seeing as many as half a page of results be foreign posts, so that's a lot of wasted bandwidth

[twitter-dev] Search API returning rate limit errors at an increased rate

2010-06-07 Thread Eric T. Peterson
Folks, We make a fair number of calls to the Twitter Search API every day. When I set up our use of Search APIs with Matt Sanford over a year ago he asked us to A) identify with Twitter username and B) identify with a unique User-Agent. Based on my read of Twitter documentation we should be "good

[twitter-dev] Search API: searching for "Don" and finding "don't" instead

2010-06-02 Thread Jeffrey Greenberg
We have a user that is causing us to create a search of the form: Don SomeLastName which is returning tweets containing "don't" and SomeLastName. Thats a no good! Is there a decent workaround for this by modifying the search? e.g. Don SomeLastName -don't but how do you escape the single qu

[twitter-dev] Search api returning results based on walking shortened URLS: causing problems.

2010-05-26 Thread Jeffrey Greenberg
So we have customer that is searching, for example, for hotels.com. So we use the search api and we get from Twitter a tweet that has no such text in it, but it turns out that the shortened URL contains the string 'hotels.com': Here's the tweet: Siam Bayview Hotel Pattaya, Beach Rd. from THB 2

[twitter-dev] Search API no longer goes back 7-10 days?

2010-05-24 Thread IDOL
We've noticed over the last few days that we can only retrieve the last ~300 tweets containing certain search terms which are included in at least a 1,000 tweets a day. In the past we were always able to go 15 100 tweet pages deep in to the history of a particular query. Now we're limited to appr

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 ht

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

Re: [twitter-dev] Search API or Streaming API?

2010-05-03 Thread John Kalucki
If you are going to build a search engine, you'll need all of the Tweets to search over them. For this, you'll want to take the Firehose of all public statuses. http://apiwiki.twitter.com/Streaming-API-Documentation You'll need a commercial data license to do this. Email api to get started. GAE

[twitter-dev] Search API or Streaming API?

2010-05-02 Thread nischalshetty
I plan to build a search engine which would utilize the search APIs. Should I be using the Twitter Search API or the Streaming API to do the same? What is the difference between the two and would the Streaming API work on the Google App Engine?

Re: [twitter-dev] Search API - from:xxx not returning @ replies

2010-04-29 Thread Abraham Williams
The API worked for me. http://hurl.it/hurls/b038fc2feab35f899dad30dc3d30de8b310b8520/016284e356b27667be31737e2aeb7d6593ea87dc On Thu, Apr 29, 2010 at 11:39, mikawhite wrote: > > Thursday 2010.04.29 - 11:33am PDT > > Search API : No posted @ replies are found > > I tried > > from:comcastbonnie >

[twitter-dev] Search API - from:xxx not returning @ replies

2010-04-29 Thread mikawhite
Thursday 2010.04.29 - 11:33am PDT Search API : No posted @ replies are found I tried from:comcastbonnie from:al3x from:raffi Search web is OK.

Re: [twitter-dev] Search API - 420 increase at 17:01 PDT

2010-04-14 Thread Jonathan Reichhold
420 is a rate limit. Are you in shared hosting or have you changed the access pattern? On Wed, Apr 14, 2010 at 7:24 PM, mikawhite wrote: > The Search API is returning 420 code this afternoon. Did something > change at twitter? To my knowledge, nothing has changed at my location. > -- To unsu

[twitter-dev] Search API - 420 increase at 17:01 PDT

2010-04-14 Thread mikawhite
The Search API is returning 420 code this afternoon. Did something change at twitter? To my knowledge, nothing has changed at my location.

Re: [twitter-dev] Search API Changes: Popular Tweets vs. Recency

2010-04-06 Thread Chad Etzel
Since you are listening, here is my feedback... I have been running TweetGrid.com for quite a while. You may have heard of it, maybe not... it's not huge. It never got any press, it was only created by one guy in his spare time. It started off as a tiny personal project, then grew into a hobby and

[twitter-dev] Search API Changes: Popular Tweets vs. Recency

2010-04-06 Thread Taylor Singletary
Hi Developers, We're listening. While the popular result option in the Search API is absolutely opt-in at present, we are reevaluating the many arguments members of the developer community have against it becoming default API behavior. We are meeting with the teams involved to review the feedback

[twitter-dev] Search API fails with Chinese

2010-03-22 Thread Irokez
http://search.twitter.com/search.json?q=^_^&lang=en - works perfectly http://search.twitter.com/search.json?q=^_^&lang=zh - Twitter search has timed out Is there a way to solve the problem? To unsubscribe from this group, send email to twitter-development-talk+unsubscribegooglegroups.com or reply

[twitter-dev] Search API - Search words + people + date

2010-03-19 Thread tux_advocate_hpu
Is it possible to search for a phrase, posted by a given user, since a given date? It doesn't seem to work. You can search for a phrase by a given user. Or you can search for a phrase since a given date. Both when you search for it all, you get zero results. I tried using this page, thinking m

[twitter-dev] Search API - Does Tweet already exist?

2010-03-19 Thread tux_advocate_hpu
I have some search API code that works, but seems way too slow. I am hoping I can get some pointers and best-practices advice. I am using an RSS news headline feed at my organization (a university) and only posting Tweets for new headlines. I iterate through the headlines and search for Tweets f

Re: [twitter-dev] Search API...searching for videos

2010-03-13 Thread John Kalucki
Repeated automated queries like this should be done on the Streaming API. You can track on words like youtube to grab various domains, track on keywords that indicate a video URL extension, or, you could apply for the Links stream and process all links however you'd like. You should not start off

[twitter-dev] Search API from:username performance issues?

2010-03-12 Thread Chad Etzel
Hi dev team, I've gotten progressively more complaints from TweetGrid users about searches in the form of "from:username" not updating in a timely fashion. I haven't changed my code in a while, so after investigating it appears that the search index does lag behind a bit for "from:" searches as co

[twitter-dev] Search API...searching for videos

2010-03-12 Thread eco_bach
Hi Currently in beta and viewable at http://www.tweetmasher.com, I am building a Twitter search application and slowly adding new features. One thing I would like to add is the ability to search for video links. Can anyone offer suggestions on what I would use in my search query? I assume the lin

[twitter-dev] Search API...searching for videos

2010-03-12 Thread eco_bach
Hi Currently in beat and viewable at http://www.tweetmasher.com, I am building a Twitter search application and slowly adding new features. One thing I would like to add is the ability to search for video links. Can anyone offer suggestions on what I would use in my search query? I assume the lin

[twitter-dev] Search API : Pagination is out of order

2010-03-10 Thread Hrishi
Hello all, I collecting location based tweets. I am using max_id and page parameters for pagination. The ids of the tweets returned seem to be out of order. For example : Go to: http://search.twitter.com/search.json?geocode=40.70771%2C-73.948974%2C15km&rpp=100&q=&page=1 Then go to page 2 using

Re: [twitter-dev] search api problem

2010-03-05 Thread Abraham Williams
Have a look at the Streaming API. [1] You can open a connection and count through every thousand results. Abraham [1] http://apiwiki.twitter.com/Streaming-API-Documentation On Mon, Mar 1, 2010 at 04:17, enes akar wrote: > Hello; > I want to find when the publish time of 1000th tweet that conta

Re: [twitter-dev] Search API rate limit & IP address question

2010-03-02 Thread Charles A. Lopez
On 2 March 2010 14:05, eys wrote: > Hello there! I have two questions: > > First, I received an approval for whitelisting for my server's IP > address (as in, the IP number that I see when I log onto my webhosting > account). I'm currently building my application in Flash using AS3 and > after I'

[twitter-dev] Search API rate limit & IP address question

2010-03-02 Thread eys
Hello there! I have two questions: First, I received an approval for whitelisting for my server's IP address (as in, the IP number that I see when I log onto my webhosting account). I'm currently building my application in Flash using AS3 and after I've tested my project a few times, I'll get this

[twitter-dev] search api problem

2010-03-01 Thread enes akar
Hello; I want to find when the publish time of 1000th tweet that contains word 'love'. So I make the following query. http://search.twitter.com/search.atom?rpp=1&page=1000&q=love But the results are instable. Sometimes, the result is the tweet that is just 10 minutes ago from now. (this result is

Re: [twitter-dev] search api and until parameter

2010-02-23 Thread Mark McBride
Search results are kept for a fairly short period of time... definitely not a full month. This URL http://search.twitter.com/search.json?q=google&until=2010-02-20 Does return results. ---Mark http://twitter.com/mccv On Tue, Feb 23, 2010 at 1:04 AM, enes akar wrote: > Hi; > > Is there a d

Re: [twitter-dev] Search API..receiving the refresh_url

2010-02-23 Thread John Kalucki
If you are performing repeated automated searches and/or looking for low-latency results, you should be using the Streaming API. http://groups.google.com/group/twitter-api-announce/browse_thread/thread/c8c713bb63fac24c -John Kalucki http://twitter.com/jkalucki Infrastructure, Twitter Inc. On Tue

[twitter-dev] search api and until parameter

2010-02-23 Thread enes akar
Hi; Is there a date limit for until parameter in search API? Is so what is it? For example following gives nothing. http://search.twitter.com/search.atom?q=google&until=2010-01-21 -- Enes Akar http://www.linkedin.com/pub/enes-akar/7/835/3aa

[twitter-dev] Search API..receiving the refresh_url

2010-02-23 Thread eco_bach
Hi If you do a search from the official twitter search page, every 10-20 seconds or so, you receive a json response with a refresh_url. I'm building my own Twitter search appliance and want to incorporate this feature. How can I receive this refresh url after every search and is there a way to cha

Re: [twitter-dev] Search API and total number of matches

2010-02-17 Thread Abraham Williams
Nope. You can iterate and count them yourselves but you will be limited to the results Search returns. Abraham On Wed, Feb 17, 2010 at 19:12, eco_bach wrote: > Hi > You determine the number of tweets per age using the 'rpp' query > parameter, with a maximum of I believe, 100 tweets per page, bu

  1   2   >