Re: [twitter-dev] Streaming API OAuth explanation?

2010-04-20 Thread Dima Brodsky
Hi, Question about oauth registration ... do I register the user ID I currently use at the same place as all other apps, i.e.http://dev.twitter.com/apps/new, or is there another endpoint for the streaming api? Thanks! ttyl Dima On Tue, Apr 20, 2010 at 10:17 AM, Taylor Singletary

Re: [twitter-dev] Streaming API OAuth explanation?

2010-04-20 Thread Taylor Singletary
In the current incarnation, you don't need a registered application to use the streaming API -- just a valid username and password to access the endpoints. While we don't know what the OAuth-based authentication is going to look like in the future of authenticating with the streaming API, we do

[twitter-dev] Streaming API not returning any data

2010-04-19 Thread Amitab
Hi, There was a thread about this before in which Twitter folks mentioned that there was a problem with the load balancers. This happened at about 4pm PDT. The streaming API didnt send anything and neither terminated the connection. I restarted my streaming and it started working again. I have

Re: [twitter-dev] Streaming API not returning any data

2010-04-19 Thread John Kalucki
The Streaming API is currently configured to send a keep-alive newline every 30 seconds. If you don't receive any data or the keep-alive in perhaps 60 or 90 seconds, you should drop and reconnect. The only case where what you observed should happen is if a load balancer restarts. I don't think

Re: [twitter-dev] Streaming API track vs. Search results

2010-04-18 Thread John Kalucki
Also ensure that your client is logging the raw data as received from the socket. Sometimes this will narrows an issue down to a parsing or similar error in the client. -John Kalucki http://twitter.com/jkalucki Infrastructure, Twitter Inc. On Fri, Apr 16, 2010 at 9:01 AM, Mark McBride

[twitter-dev] Streaming API track vs. Search results

2010-04-16 Thread Mad Euchre
I wanted to test if my program is getting all the tweets it should. My simple test was track=Palin and I timed it for exactly 5 minutes. I got 3 tweets and several replies to. Then I immediately ran this: http://search.twitter.com/search.atom?q=Palin and looked for tweets in the last 5 minutes.

Re: [twitter-dev] Streaming API track vs. Search results

2010-04-16 Thread Mark McBride
If you can duplicate this, can you send the exact text, tweet IDs and times of the runs? Latency on the streaming API should be better than it is in search (they're both pretty fast), so having the streaming API lag search is surprising. ---Mark http://twitter.com/mccv On Fri, Apr 16, 2010

[twitter-dev] Streaming API - weird data in JSON text

2010-04-14 Thread Mad Euchre
Can someone please tell me why some tweets have the following as the text? text:\uc624\ub298 \uc2dc\uac00\ucd1d\uc561\uc774 $AAPL \uc740 $208.0B \uc774\uace0 $GOOG \uc740 $177.2B \ub124\uc694. \uadf8\ub3d9\uc548 \uc5c5\uce58\ub77d \ub4a4\uce58\ub77d\ud558\ub358 \ub450 \ud68c\uc0ac\uc758

Re: [twitter-dev] Streaming API - weird data in JSON text

2010-04-14 Thread Josh Bleecher Snyder
Unicode? http://json.org/ -josh 2010/4/14 Mad Euchre mad.ukrain...@gmail.com: Can someone please tell me why some tweets have the following as the text? text:\uc624\ub298 \uc2dc\uac00\ucd1d\uc561\uc774 $AAPL \uc740 $208.0B \uc774\uace0 $GOOG \uc740 $177.2B \ub124\uc694.

Re: [twitter-dev] Streaming API - weird data in JSON text

2010-04-14 Thread Andrew Badera
2010/4/14 Mad Euchre mad.ukrain...@gmail.com: Can someone please tell me why some tweets have the following as the text? text:\uc624\ub298 \uc2dc\uac00\ucd1d\uc561\uc774 $AAPL \uc740 $208.0B \uc774\uace0 $GOOG \uc740 $177.2B \ub124\uc694. \uadf8\ub3d9\uc548 \uc5c5\uce58\ub77d

[twitter-dev] Streaming API TOS

2010-04-11 Thread Dewald Pretorius
With reference to: http://twitter.com/pdfs/streaming_api_eula.pdf Section 5 (ii) (e): You may only use the Content and Content Feed and any data resulting or provided therefrom for internal purposes only and, unless expressly authorized herein, you may not publicly release or disclose any data or

Re: [twitter-dev] Streaming API TOS

2010-04-11 Thread John Kalucki
Both of those use cases are fine. The intent was to prevent people from publishing counts of Tweets per day or similar metrics. (I make no pretense at defending this intent, I'm the messenger.) Go forth and wordle. This EULA is near the end of its life and has been rewritten into the Commercial

[twitter-dev] Streaming API with Chinese/Japanese language track predicates

2010-04-07 Thread Toby Phipps
Hi, Has anyone managed to get Japanese or Chinese language track predicates working with the Streaming API? No matter what I try, I fail to get any matches using track and any Japanese character, or word. I note from the doc that Some UTF-8 keywords will not match correctly- this is a known

Re: [twitter-dev] Streaming API with Chinese/Japanese language track predicates

2010-04-07 Thread John Kalucki
We break the status text into tokens by whitespace and punctuation, then apply the tokens to a hashmap of tracked terms. If the language doesn't have whitespace, the only thing that will match is the entire Tweet. I know that Search has struggled with this as well. I take it that the solutions

Re: [twitter-dev] Streaming API with Chinese/Japanese language track predicates

2010-04-07 Thread John Kalucki
There are people here at Twitter who know this stuff inside and out. I just haven't, yet, roped them in for a fix. Once we have a fix in hand, we'll publish recommendations for everyone. Whatever our streaming servers have to do, your streaming clients have to do, and we might as well pool our

[twitter-dev] Streaming API running dry again?

2010-04-01 Thread Chad Etzel
Hi all, I am using the filter stream, and twice in the last 24 hour period the stream has run dry... the connection remains open but no tweets arrive. If I manually kill the connection and reconnect everything works properly again (so I don't think my account somehow got banned). I know this

[twitter-dev] Streaming API -- filtering with punctuation

2010-03-26 Thread Peter Kieltyka
Hey guys, Is it at all possible, in some way or another to specify a filter with a period? I've been working on an image streaming service and up till now I have been just filtering on: twitpic,yfrog,pic However, we'd also like to stream in links from ow.ly, but I would have to filter on ow to

Re: [twitter-dev] Streaming API -- filtering with punctuation

2010-03-26 Thread John Kalucki
The combinatorics don't work out here until we offer boolean AND. Tokens are thrown against a HashMap to determine delivery. It's not really feasible to also throw arbitrary combinations of tokens against the HashMap. If we ever support AND, then you could search for ow AND ly. You'll have to

Re: [twitter-dev] Streaming API -- filtering with punctuation

2010-03-26 Thread M. Edward (Ed) Borasky
On 03/26/2010 10:32 AM, John Kalucki wrote: The combinatorics don't work out here until we offer boolean AND. Tokens are thrown against a HashMap to determine delivery. It's not really feasible to also throw arbitrary combinations of tokens against the HashMap. If we ever support AND, then you

Re: [twitter-dev] Streaming API -- filtering with punctuation

2010-03-26 Thread John Kalucki
You really shouldn't pick your systems based on what Twitter uses unless all else is the same. Our requirements are radically different from yours. I'd encourage you to use the same libraries though -- for example, if we're using Gson to parse JSON, you are unlikely to run into additional

[twitter-dev] Streaming API , statuses/filter using track

2010-03-22 Thread Kislay
Hi , I would like to know whether the streaming API allows us to get older tweets using filter with track predicate . Say , I have created a filter using a certain set of keywords , and if the real time stream does NOT contain any matching tweets , does it look in the older set of tweets , or

Re: [twitter-dev] Streaming API , statuses/filter using track

2010-03-22 Thread John Kalucki
The Streaming API only serves current statuses and a short history, controlled by the count parameter. Use one of the REST APIs to backfill. -John Kalucki http://twitter.com/jkalucki Infrastructure, Twitter Inc. On Mon, Mar 22, 2010 at 5:26 AM, Kislay kislaychan...@gmail.com wrote: Hi , I

[twitter-dev] streaming api

2010-03-20 Thread rizwan khann
Hi i run this code but it just give me 100 status whose track twitter word but it not work as a stream...and not continue update for real time. plz tell me which method use to continue stream i m using TweetSharp Preview 24 API var twitter = FluentTwitter.CreateRequest()

Re: [twitter-dev] streaming api

2010-03-20 Thread John Kalucki
Perhaps the 10.Seconds() and Take(100) functions are limiting your output? It seems that this framework is perhaps not streaming, but assuming a finite response size? I'd ask on the TweetSharp dev list. -John Kalucki http://twitter.com/jkalucki Infrastructure, Twitter Inc. On Sat, Mar 20, 2010

[twitter-dev] Streaming API (filtered) missing Tweets

2010-03-16 Thread stevew
Hi I am using the PHP library Phirehose to consume the streaming API, however I don't seem to receive the tweets from the people I am interested in - I am connecting to the url: http://stream.twitter.com/1/statuses/filter.json - Connecting without the filter I get about 27 tweets a second, with

Re: [twitter-dev] Streaming API (filtered) missing Tweets

2010-03-16 Thread John Kalucki
Do those same users show in search? If not, chances are that those users are filtered for quality from both Search and Streaming. If the users do show in Search, there's probably something wrong with your filter predicates. Note that track only searches on status text, not on the entire status

Re: [twitter-dev] Streaming API Basic Auth

2010-03-16 Thread Andrew Badera
Would JSONP be a fit for your situation? ∞ Andy Badera ∞ +1 518-641-1280 Google Voice ∞ This email is: [ ] bloggable [x] ask first [ ] private ∞ Google me: http://www.google.com/search?q=andrew%20badera On Mon, Mar 15, 2010 at 8:06 PM, Lawrence lipeng...@gmail.com wrote: Hi Everyone, I am

Re: [twitter-dev] Streaming API Basic Auth

2010-03-15 Thread John Kalucki
We do indeed have crossdomain.xml disabled on stream.twitter.com. If that's required, you'll have to wait a bit before deploying a Javascript solution. If that isn't the problem, I'd suggest using tcpdump or some other wire inspection tool and see what is transpiring directly. The Streaming API

[twitter-dev] Streaming API JSON Decode Double Errors?

2010-03-13 Thread briantroy
We are doing are last bit of testing before cutting over to the streaming API and we see occasional errors: PHP Warning: [json] (json_encode_r) double INF does not conform to the JSON spec, encoded as 0. in /root/src/justsignal-twitter-stream/ twitter-track-class.php on line 154 PHP Warning:

Re: [twitter-dev] Streaming API JSON Decode Double Errors?

2010-03-13 Thread Andrew Badera
We can't answer your question for you since we have no idea what you're receiving. What does the streaming response look like that your consumer is tripping over? Capture it in association with log events. ∞ Andy Badera ∞ +1 518-641-1280 Google Voice ∞ This email is: [ ] bloggable [x] ask first [

[twitter-dev] Streaming API follow limit

2010-03-08 Thread Lucas Vickers
Hello, The Streaming API documentation used to state that you could follow 200 or 400 users (I forget). I just checked the updated documentation and I don't see any mention of limit. Does anyone know the limit of users I can follow with a regular and a whitelist account? The number is going to

[twitter-dev] Streaming API Best Practice (Multiple Connections or Single)

2010-02-24 Thread Alam Sher
Hi, What is the best practice if I have 20K twitter user base and I want to track user's specific keywords via statuses/filter? Should I distribute the processing on multiple nodes, lets say open a streaming connection tracking keywords for 5K users each (on different IPs or same IP with

Re: [twitter-dev] Streaming API Best Practice (Multiple Connections or Single)

2010-02-24 Thread John Kalucki
The documentation should be pretty clear on this topic. One main connection, and perhaps an auxiliary connection to manage query velocity. You must not proliferate connections to work around rate limits. Instead, you must apply for higher access. Connections are expensive.

[twitter-dev] Streaming API connection abandonment separation anxiety issues

2010-02-22 Thread John Kalucki
A number of developers have reported abandoned connection issues on the Streaming API starting, perhaps, about two weeks ago. The symptoms include a long-established TCP connection to stream.twitter.com going quiet, with the connection mysteriously held open for perhaps hours afterward. After

Re: [twitter-dev] Streaming API connection abandonment separation anxiety issues

2010-02-22 Thread Marc Mims
* John Kalucki j...@twitter.com [100222 10:51]: If you had a correlative experience within a minute or so of 15:55 UTC, please respond to this message. Indeed, I did. From the application log: 2010/02/22 07:56:14 9481340618: RT @whitehouse: The Presi... 2010/02/22 07:57:14 timeout 2010/02/22

Re: [twitter-dev] Streaming API connection abandonment separation anxiety issues

2010-02-22 Thread Kim Leloup
connection issue around 15:56 UTC, see our log below: 22-02-2010 16:55:41 - Consume rate: 13 status/sec (764 total), avg enqueueStatus(): 1.51ms, avg checkFilterPredicates(): 349.46ms (12 total) over 60 seconds. 22-02-2010 16:56:18 - Phirehose connection error occured: 22-02-2010 16:56:18 -

Re: [twitter-dev] Streaming API question

2010-02-20 Thread Marc Mims
* rob robert.bag...@gmail.com [100219 08:56]: Has anyone else ran into an issue where over time the Streaming API just stops sending results? Yes. I'm seeing the same thing. I've set up a 45 second timeout. The following entries were extracted from the application log. I'm currently following

Re: [twitter-dev] Streaming API question

2010-02-20 Thread John Kalucki
A 45 second period of inactivity is not unusual when following just 100, or even 100,000 users. The keep-alive newlines are only sent once every 10 minutes. You should not reconnect so aggressively. -John Kalucki http://twitter.com/jkalucki Infrastructure, Twitter Inc. On Sat, Feb 20, 2010 at

Re: [twitter-dev] Streaming API question

2010-02-20 Thread Marc Mims
* John Kalucki j...@twitter.com [100220 20:24]: A 45 second period of inactivity is not unusual when following just 100, or even 100,000 users. The keep-alive newlines are only sent once every 10 minutes. You should not reconnect so aggressively. I can certainly set the time out to 10 minutes.

Re: [twitter-dev] Streaming API question

2010-02-20 Thread John Kalucki
Arg. This is what I get for not checking the configuration each time. Yes, it's currently set to send a newline every 30 seconds. On Sat, Feb 20, 2010 at 8:45 PM, Marc Mims marc.m...@gmail.com wrote: * John Kalucki j...@twitter.com [100220 20:24]: A 45 second period of inactivity is not

Re: [twitter-dev] Streaming API question

2010-02-20 Thread Marc Mims
* John Kalucki j...@twitter.com [100220 21:02]: Arg. This is what I get for not checking the configuration each time. Yes, it's currently set to send a newline every 30 seconds. Ok. Sorry to drag this out, but what, then, is an appropriate timeout value for the application? @semifor

Re: [twitter-dev] Streaming API question

2010-02-20 Thread John Kalucki
60 or 90 seconds seems reasonable, but your code should also detect a socket close immediately and reconnect immediately. The common case for a connection drop -- a server restart -- should cause your socket to close, the client to detect the closure, and reconnect, all within about a second. On

[twitter-dev] Streaming API question

2010-02-19 Thread rob
Has anyone else ran into an issue where over time the Streaming API just stops sending results? We are using a Ruby library to connect (twitter-stream) which uses EventMachine to open a persistent connection to the API (we are tracking and following). The library properly handles reconnection

Re: [twitter-dev] Streaming API question

2010-02-19 Thread Atul Kulkarni
Me too! Exact same case. I am using tweepy. On Fri, Feb 19, 2010 at 10:36 AM, rob robert.bag...@gmail.com wrote: Has anyone else ran into an issue where over time the Streaming API just stops sending results? We are using a Ruby library to connect (twitter-stream) which uses EventMachine to

Re: [twitter-dev] Streaming API question

2010-02-19 Thread Dima Brodsky
Hi, Yup, I saw it the last couple of weeks, this week has been considerably better. I use the delimited stream so I do read(entry size), read(entry), repeat ... I just put a 30 second timeout on the read operation (this is all in python) and if a read fails I close the stream and

Re: [twitter-dev] Streaming API question

2010-02-19 Thread John Kalucki
This shouldn't be happening, and having developers build these sorts of workarounds saddens me. It is possible that the server side is holding dead connections open, but I doubt it -- as I've a considerable amount of data to the contrary. I suspect that the socket code does not detect a close,

[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

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] 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] streaming api results?

2010-01-19 Thread joelkeepup
Hi, Hi, reading documentation at: http://apiwiki.twitter.com/Streaming-API-Documentation#statuses/filter says returns a list of status elements, when I click they hyper link it takes me to this page: http://apiwiki.twitter.com/REST+API+Documentation#Statuselement which says the documentation

Re: [twitter-dev] Streaming API - Partial word match

2010-01-19 Thread Mark McBride
In the short term there are no plans to support partial matching. It's considerably more expensive than the current implementation. ---Mark http://twitter.com/mccv On Mon, Jan 18, 2010 at 1:05 PM, vivekpuri v...@vivekpuri.com wrote: Search API team is recommending developers to migrate

Re: [twitter-dev] streaming api results?

2010-01-19 Thread Mark McBride
I'll update the doc. The best place to look right now is here http://apiwiki.twitter.com/Twitter-REST-API-Method:-statuses show, which has a sample status return. ---Mark http://twitter.com/mccv On Tue, Jan 19, 2010 at 7:25 AM, joelkeepup taskow...@gmail.com wrote: Hi, Hi, reading

[twitter-dev] Streaming API - Partial word match

2010-01-18 Thread vivekpuri
Search API team is recommending developers to migrate over to Streaming API. To get started with this, i was looking at the Streaming API docs and they state that if using Track for query parameter, Terms are exact-matched, and also exact-matched ignoring punctuation. From what i can figure out

Re: [twitter-dev] Streaming API - Partial word match

2010-01-18 Thread Jim Gilliam
I've been able to track act.ly urls by using act. So try bit and just throw out anything that isn't a bit.ly url. On Mon, Jan 18, 2010 at 1:05 PM, vivekpuri v...@vivekpuri.com wrote: Search API team is recommending developers to migrate over to Streaming API. To get started with this, i was

Re: [twitter-dev] Streaming API Basics ...

2010-01-18 Thread John Kalucki
1) The sample resource returns a sampled stream, best for statistical analysis and the like. The filtered resource returns a stream filtered by the supplied predicates. You will mostly be using the filtered resource. 2) Retweets can be found with the follow parameter. See

[twitter-dev] Streaming API Basics ...

2010-01-16 Thread Twitter-Developer
Dear Experts, Well I have been developing Twitter applicaiton for quite a long now and has been using Twitter Search API for my goals. Here is my business overview: I have subscribers over 20K. Have their profiles containing their interests keywords, location and other geographic information. I

[twitter-dev] Streaming API tweets delayed by ~20 minutes

2010-01-13 Thread jonat...@scribblelive
I'm using the streaming API /track function. The tweets coming in right now are delayed about 20 minutes (i.e. if I go to the tweet permalink the moment I get a tweet, it says 22 minutes ago, etc). Is this an effect of Track Limiting (http://apiwiki.twitter.com/

Re: [twitter-dev] Streaming API tweets delayed by ~20 minutes

2010-01-13 Thread John Kalucki
We have extensive monitoring on all streams and graph the worst case latency for every server in several ways, from several locations. If latency increases just slightly, alarms go off. I think you must be looking at something else. Try this: In one window: curl -s

[twitter-dev] Streaming API Tokenizing Process

2010-01-10 Thread Damon C
This question is directed towards John, but happy to hear how other folks do it as well. I've got a couple questions regarding the tokenizing process on the streaming API. This would be remedied pretty easily with an example from Twitter as to their tokenizing process/regexp as I'm slightly

[twitter-dev] Streaming API - AND between filter keywords

2010-01-09 Thread Amitab
Hi folks, Is there a way by which I can get streaming results tracking a combination of words. For example, is it possible to get streaming results which track the keyword San Francisco i.e, San AND Francisco. I could track San OR Francisco and then filter out for San AND Francisco but the

Re: [twitter-dev] Streaming API - AND between filter keywords

2010-01-09 Thread Mark McBride
Currently no. What I would do is search for Francisco (a much rarer term), and then manually check for San Francisco on your end. ---Mark http://twitter.com/mccv On Sat, Jan 9, 2010 at 2:32 PM, Amitab hiamita...@gmail.com wrote: Hi folks, Is there a way by which I can get streaming

[twitter-dev] Streaming API Client DNS TTL issue

2009-12-29 Thread John Kalucki
I've noticed a handful of Twitter Streaming API clients that are not honoring the DNS Time To Live (TTL). If your client is currently connected to 128.121.146.231, you certainly have an issue with ignoring the TTL. If you have restarted your client in the last few weeks, but are connected to

[twitter-dev] Streaming API

2009-12-27 Thread Arunachalam
Hi, The webpage http://apiwiki.twitter.com/Streaming-API-Documentation specifies The *Gardenhose* access level provides a proportion more suitable for *data mining and research applications* that desire a larger proportion to be statistically significant sample. Please let me know how to get the

Re: [twitter-dev] Streaming API

2009-12-27 Thread Abraham Williams
statuses/gardenhose was moved to statuses/sample which is available to all Twitter accounts. http://apiwiki.twitter.com/Streaming-API-Documentation#AccessandRateLimiting On Sun, Dec 27, 2009 at 13:14, Arunachalam arunachala...@gmail.com wrote: Hi, The webpage

Re: [twitter-dev] Streaming API

2009-12-27 Thread John Kalucki
All Twitter accounts have access to the Spritzer access level on /1/statues/sample.format. The Gardenhose rate increases the flow on that same resource by about three times. You have to agree to a EULA. Email a...@twitter.com to get started. -John Kalucki http://twitter.com/jkalucki Services,

Re: [twitter-dev] Streaming API : Shadow white listing

2009-12-11 Thread Abraham Williams
Send an email to a...@twitter.com and hopefully they will sort you out. Abraham On Thu, Dec 3, 2009 at 16:38, Darren Bounds (Cliqset) dar...@cliqset.comwrote: Hello, Several weeks ago (approximately 5) we (Cliqset) submitted a request to increase our 'shadow' user limit to 10,000 from the

[twitter-dev] Streaming API : Shadow white listing

2009-12-03 Thread Darren Bounds (Cliqset)
Hello, Several weeks ago (approximately 5) we (Cliqset) submitted a request to increase our 'shadow' user limit to 10,000 from the default of 400. We haven't heard back. In our desperation to migrate to streaming without violating Twitter ToS or trigger rate limiting, we recently attempted to

[twitter-dev] streaming API missing a lot of tweets

2009-11-24 Thread alexc
hi all, I am noticing that the gardenhose access level is missing a lot of tweets from authoritative users such as @guykawasaki and @chrisbrogan, both of which tweets quite often and their accounts being public. I have not streamed a single tweet from the above account since Oct 27, while i am

[twitter-dev] Streaming API

2009-11-18 Thread briantroy
I have a question about the streaming API. I am currently whitelisted for the standard search API on several IP addresses. I'd like to begin moving to the streaming API (at least to test) but am blocked by the one connection per account limit. Is there a way to be whitelisted (by IP or

[twitter-dev] Streaming API with Dynamic Tag Set

2009-11-16 Thread Benjamin Darfler
I have the use case where I want to ingest twitter messages based on a set of tags that will changes frequently (possibly a few times a min or more). I'm polling the search api and can vary the terms I'm searching for with each request. I would love to move over to the streaming api but I'm not

[twitter-dev] Streaming API statuses/filter access increase request

2009-11-05 Thread Darren Bounds (Cliqset)
Hello, Several days ago we (Cliqset) made a request via the API whiltelisting form for an increase to our default 'statuses/filter' follow user limit (400). The request came back today as rejected with no content in the 'reason why' section. Is there some way we can resubmit directly? We

[twitter-dev] Streaming Api - Keywords matched

2009-11-03 Thread Fabien Penso
Hi. Would it be possible to include the matched keywords in another field within the result from the streaming/keyword API? It would prevent matching those myself when matching for multiple internal users, to spread the tweets to the legitimate users, which can be time consuming and tough to do

[twitter-dev] Streaming Api

2009-10-20 Thread Biri
Hey I would like to connect to twitter streaming using the api and I would like to do it using c# I already read the documentation on the twitter web site and still have no idea how to connect any help would be greatly appreciated

[twitter-dev] Streaming API Permission

2009-10-19 Thread Shashi
Iam try to connectin Twitter Streaming API http://stream.twitter.com/1/statuses/firehose.json with my twitter username and password in turn iam getting Http 403 User not in required role Any information how to access twitter firehose streaming api helps us lot Thank you Shashi...

[twitter-dev] Streaming API Rate Limit Question

2009-10-07 Thread Damon C
I've got a quick question on the rate limiting of the streaming API. The documentation states the following: Each account may create only one standing connection to the Streaming API. Does this mean that I have to use two separate accounts if I want to connect to both statuses/sample and

[twitter-dev] Streaming API -- Depreciated URL removal warning

2009-10-05 Thread John Kalucki
A number of clients are still connecting on the deprecated Streaming API URLs. Be sure that your client is connecting to the documented /1/ statuses/* resources and not the unsupported /gardenhose, /spritzer, / shadow, /follow, /track, etc. resources. The old URLs have been unsupported for about

[twitter-dev] streaming api documentation error (?)

2009-10-02 Thread gabriele renzi
Hi everyone, I'm in the process of implementing a consumer for the streaming API, but while perusing the documentation I noticed an inconsistency in http://apiwiki.twitter.com/Streaming-API-Documentation When a network error (TCP/IP level) is encountered, back off linearly. Perhaps start at

[twitter-dev] Streaming API Help

2009-09-19 Thread Greg
I'm trying to implement Streaming API on my Twitter application to enhance the stabilty instead of using the Search API. Basically - I'm trying to use the track paramter to track a keyword. However, when I run this code - it just times out - nothing occurs. Perhaps I'm not using the track

[twitter-dev] Streaming API Help

2009-09-14 Thread Greg
I've recently been given access to Streaming API - and I was given access to the gardenhose - however it is not listed on the Streaming API Documentation Website (http://apiwiki.twitter.com/Streaming-API- Documentation). Is anyone aware of the documentation for this API call? I am specifically

[twitter-dev] Streaming API -- Be tolerant of retweet annotation

2009-09-09 Thread John Kalucki
Once the retweet feature is launched, some statuses flowing through all /1/statuses resources in the Streaming API will be annotated as retweets. Clients using reasonable JSON and XML parsers shouldn't require a change. Clients using brittle parsers, or those not projecting result fields, but

[twitter-dev] Streaming API -- Excessive 401 defect fixed

2009-09-08 Thread John Kalucki
A few corner cases were causing excessive rate limiting on the Streaming API. One bad login, perhaps due to an unparsable predicate, or other minor validation issue, would lock out some users in some cases. Another class of users were only allowed in once and were subsequently limited. The vast

[twitter-dev] Streaming API -- Changes yesterday and today.

2009-08-26 Thread John Kalucki
Various significant changes have been made to the Streaming API yesterday, and further changes should be expected today. So far we haven't observed any increased failure rates. If you notice any new failure behavior today, please post on this thread immediately, or just @jkalucki. -John Kalucki

[twitter-dev] Streaming API -- CHANGE REQUIRED -- URL rationalization

2009-08-26 Thread John Kalucki
The resources in the Streaming API have been rationalized. You'll need to update the URLs that streaming clients are using over the next two weeks. The old URLs will be deprecated on or after September 9, 2009. The change is documented in the Wiki:

[twitter-dev] streaming api - track method with oauth ?

2009-08-18 Thread lquerel
Hi guys, Are there plans to allow oauth instead of the basic auth to access the track service ? Typically this service can be used in a third application to follow several subject in a more efficient way that the current polling method based on the standard API. Thanks Laurent Quérel

[twitter-dev] Streaming API -- ordering guarantees: deletions may come before status updates

2009-08-13 Thread John Kalucki
Note that there are no hard delivery order guarantees in the Streaming API: ordering is best effort. This issue is most apparent when using the count parameter for deep lookback during Streaming API server restarts and also during the apparent race condition between status creation and status

[twitter-dev] streaming API track method missing statuses?

2009-08-13 Thread Andrew McCloud
Hello Everyone, I can't seem to figure out why the tweets from my test account do not show up in the streaming track method. If I use my personal account everything show up just fine. Is the track pool limited? Also! Is it possible to track #hash and @user exclusively? Andrew McCloud

[twitter-dev] Streaming API -- Saturday Morning Status Update

2009-08-08 Thread John Kalucki
Nearly all clients are on the Streaming API successfully. There is one notable exception: clients that perform a large HTTP POST operation with the follow= or track= parameter. At some threshold size, requests are not making it into the Hosebird process. We're working on fixing this remaining

[twitter-dev] Streaming API -- Recheck your clients -- post DDoS cleanup

2009-08-06 Thread John Kalucki
Some users were unable to connect to the Streaming API at various times during the DDoS. This has been fixed for the majority of Streaming API clients. The connection count is now approaching yesterday's count. If your Streaming API client is still receiving 409 redirects, connection timeouts,

[twitter-dev] streaming API for DM for multiple users ?

2009-07-27 Thread Fabien Penso
Hi. I wonder if there is a way to use the streaming API to receive DM for a list of specific users. As far as I understand there isn't, is anyone working on this? Basicly I want to offer the possibility to receive Apple Push Notifications and I'll get tons of user, so I want to go the efficient

[twitter-dev] Streaming API -- Additional markup added -- Deletion notifications on track streams.

2009-07-13 Thread John Kalucki
In addition to deletion notices, limitation notices will be added to track streams. These notices will be enabled on or after Tuesday July 14th. Deletions will be enabled on or after Thursday July 16th, as previously scheduled. From the wiki,

[twitter-dev] Streaming API/ track method - results Tweets from Dec. 2008

2009-07-11 Thread Germig
Sorry, if I should know it. But is it usual that the results of the track method could be 6 months old? When I played with it I got tweets from Dec. 2008 or May or April or nearly realtime. Any way to get just the newest? Thanks Martin

[twitter-dev] Streaming API: updating request parameters

2009-07-10 Thread Cary Knoop
Is the following implemented or will it be implemented? I have two threads, one that writes HTTP post requests to http://stream.twitter.com/track.json and one thread that reads the response from this request. Can I, without breaking the response stream, update the track parameter list so that I

[twitter-dev] Streaming API -- Pre-launch checklist added to Wiki

2009-06-30 Thread John Kalucki
Some tips for developers, copied below: Pre-Launch Checklist 1. Creating the minimal number of connections? 2. Avoiding duplicate logins? 3. Backing off from failures: none for first disconnect, seconds for repeated network (TCP/IP) level issues, minutes for repeated HTTP (4XX codes)?

[twitter-dev] streaming api multiple connections

2009-06-29 Thread Hardeep Khehra
will the streaming track api allow multiple connections from the same IP using different user accounts and if so, is there a maximum number of connections per IP?

[twitter-dev] Streaming API -- Code Change Required: follow parameter delimiter

2009-06-12 Thread John Kalucki
The follow post parameter now takes a comma separated list of userids to follow in the /follow, /track and /birddog resources. This change is being made to support future features. Space separated lists will also be supported until Wednesday June 17 to allow for transition. -John Kalucki

[twitter-dev] Streaming API -- Announcing /track resource - Search on status text

2009-06-12 Thread John Kalucki
Note: The Streaming API is currently under a limited alpha test, details below. The /track resource allows searching the Firehose stream for a list of keywords. This resource may be a useful adjunct to the Twitter Search API. While the predicates are less powerful than the SearchAPI, results are

[twitter-dev] Streaming API -- Note for desktop developers

2009-06-12 Thread John Kalucki
For the moment the Streaming API is primarily intended for consumption by partner services. Developers considering desktop deployment of Streaming API clients must coordinate with a...@twitter.com. -John Kalucki http://www.twitter.com/jkalucki Services, Twitter Inc.

[twitter-dev] Streaming API -- /follow /birddog and /shadow also match in_reply_to field.

2009-06-09 Thread John Kalucki
The follow by userID resources, /follow, /birddog and /shadow, stream all public statuses filtered by a list of userIDs. In addition to updates created by users in the list, explicit replies now also match and are streamed to consumers. Mentions, statuses that contain a given screen name (Hello

[twitter-dev] Streaming API + PHP and Python

2009-06-08 Thread Chad Etzel
Hi All, I am stumped. For several days I have tried to write a simple PHP script that can interact with the Streaming API by just pulling in the stream and echoing out the contents. This is the script I have: http://pastie.org/private/9owdxerouwhitz5nfacrw Right now it just pulls in the feed

[twitter-dev] Streaming API: missing updates non-indexed user correlation?

2009-06-05 Thread Chad Etzel
Hi John, et al. I have been playing with the /follow streams and noticed that some users' updates don't appear at all. This was really confounding for quite a while. Then I noticed that using the search API to search for from:user returned no recent results. An example is @KimSherrell. I

<    1   2   3   >