[twitter-dev] Streaming API with location and no geo filter?

2011-07-03 Thread Zac Witte
I'm tracking on a particular keyword and I want to see where in the world people are tweeting about this keyword. I'm interested especially if they're tweeting from specific venues (or checking in on foursquare, etc.) so profile location is not sufficient. I can apparently get that information if I

[twitter-dev] Streaming API track parameter Options

2011-06-29 Thread Raviv Pavel
According to the docs, searching for "twitter" should NOT return www.twitter.com (http://dev.twitter.com/pages/streaming_api_methods#track) However this is exactly what happens: Searching for "amzn" returns tweets with "www.amzn.co.jp" Searching for "Google Maps" returns tweets with "maps.google

Re: [twitter-dev] Streaming API with start_date and end_date

2011-06-23 Thread Taylor Singletary
This is not within the scope of the real-time streaming API which serves the purpose of streaming tweets & related events as they happen with very limited support for any kind of rewind behavior. On Thu, Jun 23, 2011 at 9:42 AM, Trevor Dean wrote: > This would be a great feature, any word on thi

Re: [twitter-dev] Streaming API with start_date and end_date

2011-06-23 Thread Trevor Dean
This would be a great feature, any word on this yet? Trevor Dean | Director big time design & communication Inc. 647 234 8198 Visit http://www.bigtimedesign.ca for more information On 2011-06-23, at 7:13 AM, JackRabbit wrote: > Hi Guys, > > is it possible to query streaming api with filter a

[twitter-dev] Streaming API with start_date and end_date

2011-06-23 Thread JackRabbit
Hi Guys, is it possible to query streaming api with filter and include start_date and end_date, so that developer can track or filter by date range? If yes, that could be awesome, if no, would you mind please to add this feature? Why it is needed because it would be great if we can track keyword

Re: [twitter-dev] Streaming API w/ two dedicated IP's

2011-06-14 Thread Scott Wilcox
Connecting from two IPs, with two different users will be perfectly fine and fall within the current rules. On 14 Jun 2011, at 20:39, @dbbradle wrote: > It is kosher to connect to the Twitter Streaming API using two > dedicated IP's on two separate servers or does this violate the terms > of usa

[twitter-dev] Streaming API w/ two dedicated IP's

2011-06-14 Thread @dbbradle
It is kosher to connect to the Twitter Streaming API using two dedicated IP's on two separate servers or does this violate the terms of usage? I've looked for something telling me I can't do this and nothing has cropped up, but I'd like to have this confirmed. -- Twitter developer documentation a

Re: [twitter-dev] Streaming API, Following just a couple of people

2011-06-06 Thread Matt Harris
Hi Ray, There isn't a buffer that has to be filled before the Streaming API delivers tweets. Only public tweets created after you open a connection will be delivered. Have the users you are following Tweeted since you connected, and are they public accounts (not protected)? On Jun 6, 2011, at

Re: [twitter-dev] Streaming API, Following just a couple of people

2011-06-06 Thread Arnaud Meunier
Hey Ray, As soon as the connection is established, you start receiving public statuses that match your filter predicates. Are you sure these users were actually tweeting during the time you were consuming the stream? Arnaud / @rno On Mon, Jun 6, 2011 at 6:04 AM, Ray Sl

[twitter-dev] Streaming API, Following just a couple of people

2011-06-06 Thread Ray Slakinski
I I start following just 1 or 2 people using the streaming API I do not get any of their tweets. Is there a buffer that needs to be filled before I get these? Ray Slakinski -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter: https://twitter.com/

Re: [twitter-dev] Streaming API credentials

2011-05-23 Thread James Estes
You would create a twitter app at https://dev.twitter.com/apps After you create it, there is a "My Access Token" button on the details page for your application. I /believe/ that will get you what you want. James On Mon, May 23, 2011 at 3:04 PM, Craig Walls wrote: > > I'd like to use the strea

[twitter-dev] Streaming API credentials

2011-05-23 Thread Craig Walls
I'd like to use the streaming API to track certain terms that I'll ultimately present to all of my web application's users. For instance, I want my app to display all tweets for some event, identified by some hashed term. I see that the streaming API (unlike the search API) requires authenticatio

Re: [twitter-dev] Streaming API timeout issues

2011-05-19 Thread Arnaud Meunier
Hey there, Please be careful when you share pieces of code on this Mailing List. I had to reset your Twitter password because you just shared it publicly. Please go to http://twitter.com/account/resend_password so we can send you password reset instructions. Concerning your issue, the Streaming A

[twitter-dev] Streaming API timeout issues

2011-05-19 Thread yippanion
Hi I'm trying the following code snippet to connect to your API but it is timing out while waiting for the response. string url = "http://stream.twitter.com/1/statuses/filter.json? follow=12"; WebRequest req = WebRequest.Create(url); req.Credentials = new NetworkCredential("ConnectTweetPRO", "Prest

Re: [twitter-dev] Streaming API length

2011-05-19 Thread Scott Wilcox
No. On 19 May 2011, at 20:26, Tereno wrote: > Hi there, > > Is there a maximum limit on how long we can maintain the connection to > the Streaming API or on the number of tweets consumed? > > Thanks -- Scott Wilcox @dordotky | sc...@dor.ky | http://dor.ky +44 (0) 7538 842418 | +1 (646) 827-05

[twitter-dev] Streaming API length

2011-05-19 Thread Tereno
Hi there, Is there a maximum limit on how long we can maintain the connection to the Streaming API or on the number of tweets consumed? Thanks -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter: https://twitter.com/twitterapi Issues/Enhancement

Re: [twitter-dev] Streaming API truncating tweets

2011-05-17 Thread Taylor Singletary
Where are you seeing this truncation? Can you share some examples of the JSON with the truncated (I assume status body) field? In the case of retweets in the streaming API, you may see the top-level "text" node with truncated tweet text prepended with "RT " -- but the full text of the original ref

[twitter-dev] Streaming API truncating tweets

2011-05-17 Thread Floating Floating
Why does the streaming API truncate certain tweets that are not truncated on twitter.com or through other APIs? Thanks! -- Twitter developer documentation and resources: https://dev.twitter.com/doc API updates via Twitter: https://twitter.com/twitterapi Issues/Enhancements Tracker: https://code.

Re: [twitter-dev] Streaming API JSON Samples

2011-05-02 Thread M. Edward (Ed) Borasky
>From "sample" you will receive "delete" messages. From User Streams you will receive numerous types of events, as well as tweets and DMs. I haven't looked at the documentation recently, but last time I did Twitter was still reserving the right to "add" message types and recommended you have a code

Re: [twitter-dev] Streaming API JSON Samples

2011-05-02 Thread Augusto Santos
Hi Juliano, >From filter stream we received just two types of messages: 'status' (tweets itself) and 'limit' (show how many tweets was suppressed since last reconnection). Abraços da UFRGS!! On Sun, May 1, 2011 at 3:40 PM, Juliano Bortolozzo Solanho < juliano.sola...@gmail.com> wrote: > Hello t

[twitter-dev] Streaming API JSON Samples

2011-05-02 Thread Juliano Bortolozzo Solanho
Hello there, Does anyone know of some sort of community maintained repository of message types sent by the Streaming API? With a sample of every known type of json message found in the site/user/filter streams. - Juliano -- Twitter developer documentation and resources: http://dev.twitter.com/doc

[twitter-dev] Streaming API 420 error

2011-04-22 Thread Josiah Carlson
Hello, We've been using some of the streaming API (specifically /statuses/filter.json and occasionally /statuses/sample.json), and recently I have noticed that we are seeing only 420 errors from our auth tokens for all of our dev, staging, and prod applications. Two sets of those auth tokens a

Re: [twitter-dev] Streaming API statuses/fileter method, "follow" parameter

2011-04-20 Thread Arnaud Meunier
With the "follow" parameter, you should only get "real" replies & retweets. If you need to track all mentions, try the "track" parameter (i.e. track=@user) Arnaud / @rno On Tue, Apr 19, 2011 at 9:35 PM, Kumar wrote: > Hi All, > > The streaming api documentation says t

[twitter-dev] Streaming API statuses/fileter method, "follow" parameter

2011-04-20 Thread Kumar
Hi All, The streaming api documentation says that mentions, implicit retweets and implicit replies will NOT be returned. However, it looks like they are being returned. For our application we do need to keep track of mentions and the streaming api seems to work fine. Can we rely on it being presen

Re: [twitter-dev] Streaming API Rate Limiting

2011-03-31 Thread Jeremy Dunck
On Thu, Mar 31, 2011 at 2:48 PM, Augusto Santos wrote: > No it won't. Streaming has rate limit with around 1% of firehose, if your > search term os too much generic. > If your search term or bouding box get too many tweets, you will start > receive 'limit' status message as doc said. > http://dev.

Re: [twitter-dev] Streaming API Rate Limiting

2011-03-31 Thread Augusto Santos
No it won't. Streaming has rate limit with around 1% of firehose, if your search term os too much generic. If your search term or bouding box get too many tweets, you will start receive 'limit' status message as doc said. http://dev.twitter.com/pages/streaming_api_concepts#parsing-responses On Th

Re: [twitter-dev] Streaming API Rate Limiting

2011-03-31 Thread Jeremy Dunck
On Thu, Mar 31, 2011 at 1:49 PM, Data Gatherer wrote: ... > I would not like the data gathering for one project to affect another > project. If I'm rate limited depending on how much data my single > connection to the data stream receives - this would affect all > projects. If this is the case, ca

[twitter-dev] Streaming API Rate Limiting

2011-03-31 Thread Data Gatherer
Essentially, I'd like to know how rate limiting on the streaming API works. As a research group at a large university, we want to collect data from Twitter for various different projects. Some involve setting different bounding boxes for location queries, and some involve tracking different keywor

[twitter-dev] Streaming API

2011-03-05 Thread littleark
Hi, I would like to have a stream of geo-located tweets filtered against pre-defined keywords. As stated in the documentation: "Bounding boxes are logical ORs. A locations parameter may be combined with track parameters, but note that all terms are logically ORd, so the query string track=twitte

Re: [twitter-dev] Streaming API access level limit

2011-02-28 Thread Chen Jack S Y
>From the developer resource, it is said that 'Each account may create only one standing connection to the Streaming API'. While it is possible to have a few streams with different users' account through OAuth? If yes, what's the limit? Thanks, J On Tue, Mar 1, 2011 at 4:25 AM, Matt Harris wrote

Re: [twitter-dev] Streaming API access level limit

2011-02-28 Thread Augusto Santos
Although this is specified at streaming API docs, it's possible to connect two diferent users at the same IP address. On Mon, Feb 28, 2011 at 5:25 PM, Matt Harris wrote: > Hi J, > > Glad you worked it out. The Streaming API (stream.twitter.com) does not > support multiple streams - only one conne

Re: [twitter-dev] Streaming API access level limit

2011-02-28 Thread Matt Harris
Hi J, Glad you worked it out. The Streaming API (stream.twitter.com) does not support multiple streams - only one connection is permitted. This is explained in more detail on our developer resources site: http://dev.twitter.com/pages/streaming_api_concepts#access-rate-limiting Best, @thematth

Re: [twitter-dev] Streaming API access level limit

2011-02-28 Thread Chen Jack S Y
Thanks, figured it out. Another question, how many connections are allowed with a shared IP? Any suggestions on multiple streams in one machine with one IP? J On Mon, Feb 28, 2011 at 1:50 PM, John Kalucki wrote: > Are you specifying the IDs in the URL or in a POST parameter? There's a > limit t

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

2011-02-27 Thread Josiah Carlson
John, Thank you for getting back to me. The doc lists a "For example, reconnect no more than twice every four minutes, or three times per six minutes, or some similar metric." but doesn't give a "Don't reconnect more than a few times a minute unless you are retrying automatically due to failur

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

2011-02-27 Thread John Kalucki
This is documented in painful detail here: http://dev.twitter.com/pages/streaming_api_concepts#updating-filter-predicates . If you connect a second time, you should get a TCP Close or Reset on the first connection. It sounds like your client library isn't detecting the connection close. -John Kal

Re: [twitter-dev] Streaming API access level limit

2011-02-27 Thread John Kalucki
Are you specifying the IDs in the URL or in a POST parameter? There's a limit to the URL length that we'll parse, but we'll take huge POST parameters. -John Kalucki http://twitter.com/jkalucki Twitter, Inc. On Tue, Feb 22, 2011 at 11:22 PM, aquajach wrote: > Hi, > > Just started to play with s

Re: [twitter-dev] Streaming API access level limit

2011-02-25 Thread Chen Jack S Y
Hey dude. You gave me a hint, but not tweetstream, that is twitterstream, which is newer and works for me. On Fri, Feb 25, 2011 at 2:12 AM, M. Edward (Ed) Borasky < zn...@borasky-research.net> wrote: > On Thu, 24 Feb 2011 17:34:52 +0800, Chen Jack S Y > wrote: > >> Thanks, dude. My problem is st

[twitter-dev] Streaming API limits...

2011-02-24 Thread Josiah Carlson
Now that I've got OAuth with statuses/follow.json working, I've been working through building a small part of our app. Part of the streaming API docs state that only one connection is allowed (reasonable). Upon making a second connection, the first no longer receives any data (not even anti-tim

Re: [twitter-dev] Streaming API access level limit

2011-02-24 Thread M. Edward (Ed) Borasky
On Thu, 24 Feb 2011 17:34:52 +0800, Chen Jack S Y wrote: Thanks, dude. My problem is still there though. When I try the streaming api with "curl" in command line, everything goes well and it tracks a few thousands of ids successfully. While using eventmachine (together with em-http-request) ru

Re: [twitter-dev] Streaming API access level limit

2011-02-24 Thread Taylor Singletary
If it's working for you in curl, then it's likely something either in your code or the library you're using. Are you using OAuth to authenticate or basic auth? Either way, if you can get a trace of the exact POST body and URL you are sending when issuing the request from eventmachine, it will likel

Re: [twitter-dev] Streaming API access level limit

2011-02-24 Thread Chen Jack S Y
Thanks, dude. My problem is still there though. When I try the streaming api with "curl" in command line, everything goes well and it tracks a few thousands of ids successfully. While using eventmachine (together with em-http-request) ruby gem, haven't found any solutions to track more 400 ids bu

Re: [twitter-dev] Streaming API access level limit

2011-02-23 Thread Matt Harris
Hi J, The authoritative information for the Streaming API is under the /pages/ path and you should use that for guidance. The number of connections you are allowed to the Streaming API is described in the Streaming API Concepts document: http://dev.twitter.com/pages/streaming_api_concepts It

[twitter-dev] Streaming API access level limit

2011-02-23 Thread aquajach
Hi, Just started to play with streaming API, but get confused on how many followers id could be tracked with one connection. In basic level of filter, http://dev.twitter.com/doc/post/statuses/filter says 400 followers ids http://dev.twitter.com/pages/streaming_api_methods says 5,000 followers ids

[twitter-dev] Streaming Api returning tweets with NULL value for object place

2011-02-16 Thread aci
Hello, I am using the streaming api in order to be able to save tweets that uses the geoJSON place key of the returned json object. Tt was working fine last Tuesday, Feb 15, But now, there seems to be a problem with the place tag of the tweet object. I was just wondering if it's just me or is the

Re: [twitter-dev] Streaming API vs. Search API: no API returns >95% of intented tweets

2011-02-15 Thread John Kalucki
If you examine set C, do they contain matches on fields other than the Tweet text? To increase recall, search sometimes includes keywords in followed links and other techniques. Also, are you getting rate limit messages on the Streaming API? -John Kalucki http://twitter.com/jkalucki Twitter, Inc.

Re: [twitter-dev] Streaming API vs. Search API: no API returns >95% of intented tweets

2011-02-15 Thread Adam Green
I don't get that big a discrepancy, but I do get different results from search and streaming. I use streaming for real-time delivery, and then either search or user timelines to backfill missing tweets. As long as the flow makes this possible within rate limits this gets me the greatest number of r

[twitter-dev] Streaming API vs. Search API: no API returns >95% of intented tweets

2011-02-15 Thread Karussell
Hi, this problem was already posted to the twitter4j mailing list [1]. Not sure if it is an issue with my code, twitter4j or an API issue... user reported similar problems in the past [2]. First: I'm doing a 100 tweet search (without paging) every 5 minutes e.g. against 'twitter search'. I get a

Re: [twitter-dev] Streaming API setLocations Accuracy

2011-02-14 Thread 1537 News
$stream->setLocations(array( array(-87.60603635063173,41.78233280134992,-87.5898572658539,41.813078558257345) 2011-02-13 14:31:05 41.85087 , -87.69718 2011-02-13 13:14:07 41.85253 , -87.61243 2011-02-13 19:53:30 41.97302 , -87.90559 2011-02-13 19:35:11 41.97309 , -87.90595 2011-02-13 12:

Re: [twitter-dev] Streaming API setLocations Accuracy

2011-02-14 Thread Augusto Santos
Any exaples of tweets outside the box and the box itself? On Mon, Feb 14, 2011 at 6:59 PM, 1537 News <1537n...@gmail.com> wrote: > Good Afternoon > > I am using the StreamingAPI with a boundary box but finding it to be > inaccurate. > > I don't mind thinking outside the box :) but my a large % of

[twitter-dev] Streaming API setLocations Accuracy

2011-02-14 Thread 1537 News
Good Afternoon I am using the StreamingAPI with a boundary box but finding it to be inaccurate. I don't mind thinking outside the box :) but my a large % of my results are 20 miles outside my selected boundary box. I have not set any other search criteria. Any thoughts? -- Twitter developer do

[twitter-dev] Streaming API maintenance: brief delivery pause and an increased likelihood for duplicate tweets

2011-02-09 Thread John Kalucki
We are performing a maintenance activity shortly that will increase the likelihood of duplicate tweets and other messages on all Streaming APIs: User Streams, Site Streams, and stream.twitter.com. There may also be a brief pause in delivery. No tweets or other messages will be lost during this main

[twitter-dev] Streaming API & filter terms

2011-02-05 Thread Stu
Hi, I have a question about the streaming API. We're currently consuming the Spritzer stream, this is fine. However, if we use the filter with a keyword filter, let's say 'boats', does this give us just a subset of the spritzer stream or does it give 'boats' across the whole of Twitter? Saving C

[twitter-dev] Streaming API stopwords

2011-02-03 Thread Kenny Buckler
Hello! Does anyone have experience using a list of stopwords to reduce noise when making streaming API requests to statuses/filter? I have a basic list (e.g. "a","an", "and", etc.) but wonder if anyone out there is using something more comprehensive. Thanks, Kenny -- Twitter developer document

[twitter-dev] Streaming API: retweeted always false

2010-12-23 Thread Fabrício Ferrari de Campos
Hi, I'm with a problem using streaming API, I had tracked 'amazon' and no tweets were returned with attribute 'retweeted' equals true, when in fact some tweets were retweeted. Does this occur to anyone else? -- Regards, * Fabrício Ferrari de Campos* | @fabricioffc

Re: [twitter-dev] Streaming API - Multiple connections on 1 IP?

2010-12-16 Thread Augusto Santos
Yes you can. On Thu, Dec 16, 2010 at 8:23 AM, epomqo wrote: > Hello everyone, > > Just a simple question: can I launch multiple connections to Streaming > API using different accounts, but on the same machine? The official > document seems don't say this clearly: > > "Each account may create onl

[twitter-dev] Streaming API - Multiple connections on 1 IP?

2010-12-16 Thread epomqo
Hello everyone, Just a simple question: can I launch multiple connections to Streaming API using different accounts, but on the same machine? The official document seems don't say this clearly: "Each account may create only one standing connection to the Streaming API. Subsequent connections from

[twitter-dev] Streaming API, GeoLocation Filtering

2010-12-06 Thread Eric
Hello all, Just a general question about a location-based predicate. According to the streaming API docs... "Only tweets that are both created using the Geotagging API and are placed from within a tracked bounding box will be included in the stream..." But, as other have pointed out, a lot/most

Re: [twitter-dev] Streaming API firehose visibility

2010-12-03 Thread John Kalucki
Yes, where firehose is the stream of all public statuses, with some low-quality accounts removed. On Wed, Dec 1, 2010 at 3:52 PM, dburkes wrote: > If I am using the statuses/filter streaming API, with a "track=" query > that is not overly broad, and my client never receives any "limit" > respon

[twitter-dev] Streaming API firehose visibility

2010-12-01 Thread dburkes
If I am using the statuses/filter streaming API, with a "track=" query that is not overly broad, and my client never receives any "limit" responses, can I assume that the results returned represent all the results from the entire firehose? In other words, in the absence of "limit" response, is my

[twitter-dev] Streaming API 'restricted track' & 'partner track' Levels

2010-11-19 Thread devjyoti patra
Hi, I was wondering about what happens to the developers/companies who are at 'restricted track' or 'partner track' levels for streaming API access? Also, If a developer wants to have his applications Streaming api access-roles elevated, who does he contact - Twitter or Gnip? And finally, for the

[twitter-dev] streaming api delete status notice problem

2010-11-16 Thread Furkan Kuru
We aggregate tweets of a few thousands of people using Streaming API follow. Streaming api gives us tweets of other people who mention our set of users. The problem rises when the other people delete their tweets. These delete notifications do not reach us and we can not delete those tweets. We ju

Re: [twitter-dev] Streaming API and OAuth

2010-11-08 Thread Tom van der Woerdt
Streaming API doesn't differ from the REST API with it's authentication. Both use OAuth 1.0. Tom On 11/8/10 11:55 PM, Dewald Pretorius wrote: > Please update your documentation [1] for more detail information on > authenticating on the Streaming API with OAuth. > > We need to know the same type

[twitter-dev] Streaming API and OAuth

2010-11-08 Thread Dewald Pretorius
Please update your documentation [1] for more detail information on authenticating on the Streaming API with OAuth. We need to know the same type of information that you currently provide [2] for REST OAuth. [1] http://developer.twitter.com/pages/stre0aming_api_concepts#authentication [2] http://

Re: [twitter-dev] Streaming API and authentication

2010-11-02 Thread Mark McBride
The streaming API supports basic auth *now*. At some point in the future it will not. If you're developing something new with basic auth you're setting yourself up for more work in the not too distant future. As far as the present message, only userstreams and sitestreams require oauth currently

[twitter-dev] Streaming API and authentication

2010-11-02 Thread EastSideDev
I've been using the streaming library in one of my apps. My understanding is that the streaming API still supports Basic Authentication, so I don't need to make any changes. My app did stop working with messages indicating that I am not being properly authenticated. Do I need to switch to oAuth her

Re: [twitter-dev] Streaming API, Basic Auth Ok, OAuth Unauthorized?

2010-10-25 Thread Ciaran
Hey Bradley, This is another instance of the the ongoing (and as yet un-answered sadly) question I have in the mailing list about my client (which iirc you're using) See : http://github.com/ciaranj/node-oauth/issues#issue/7 and http://groups.google.co.uk/group/twitter-development-talk/bro

[twitter-dev] Streaming API, Basic Auth Ok, OAuth Unauthorized?

2010-10-25 Thread bradley.meck
I have a simple oauth client that I use to post status updates currently, however, when I added the ability to track statuses with the Stream api using OAuth I noticed I could not connect, with Unauthorized 401 being the reply to anything I sent it. I looked into the documentation and it seems to b

[twitter-dev] Streaming API sampling and filter limiting algorithms switched to new status id

2010-10-12 Thread John Kalucki
The new status id format, previewed as new_id, requires slightly different algorithms for sampling and imposing filter limits on the Streaming API. In preparation for the big switch later today, we've cut over to using the new_id for these cases at about 6:30am PDT, 13:30 UTC. Only the most careful

[twitter-dev] Streaming API new_id test

2010-09-29 Thread John Kalucki
We streamed the new_id field for about 15 minutes this morning, starting at about 10:05 PDT, 17:05 UTC until about 10:15 / 17:15 UTC. If your streaming consumer had problems during this period: 1) Check your markup parser. 2) Respond to this thread. Barring any issues, we'll nail this setting up

[twitter-dev] Streaming API test: Adding new_id field to statuses at 17:00 UTC Sept 29

2010-09-28 Thread John Kalucki
Tomorrow, Wednesday September 29, at 10:00 AM PDT / 17:00 UTC, we will briefly introduce a field called new_id to statuses delivered over the Streaming API. If this 10 minute test is successful, we will enable the new_id field continuously on Thursday September 30th at about the same time. Note tha

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

2010-09-27 Thread Taylor Singletary
Hi Omri, Sorry, there's no option currently to filter by language. Taylor On Mon, Sep 27, 2010 at 1:50 AM, omri wrote: > hi there, > I am using the streaming API (the statuses/filter), and I get a lot of > tweets in spanish. > I wanted to know if there is a way to get results only in English?

[twitter-dev] Streaming API question..

2010-09-27 Thread omri
hi there, I am using the streaming API (the statuses/filter), and I get a lot of tweets in spanish. I wanted to know if there is a way to get results only in English? I tried to use the geo-location of the USA only, but it didn't help much. anybody? thanks, Omri -- Twitter developer documentati

Re: [twitter-dev] Streaming API skips users

2010-09-24 Thread John Kalucki
Accounts should work all of the time, almost always with very low latency, unless they are protected accounts or otherwise filtered from search and streaming. Once an account is filtered, it should remain filtered for a very long time and not bounce back and forth. If you perform the same request

[twitter-dev] Streaming API skips users

2010-09-24 Thread Ginny Hendry
We are new to the Twitter API. In early stages of testing an app, we reading from the streaming API to get tweets for a list of users. It seems to work for some users and not others, and if it fails for one or two users today it will work for them tomorrow. We are doing a post to this url with f

Re: [twitter-dev] Streaming API and oAuth

2010-09-20 Thread Tom van der Woerdt
Yes, it does. Tom On Mon, 20 Sep 2010 06:16:03 -0700 (PDT), Joel Clinger wrote: > Hello, > > Does the streaming API still support Basic Auth? > Is there going to be any python module like tweepy that will support > oAuth and the streaming API? > > Thanks. > Joel -- Twitter developer documen

[twitter-dev] Streaming API and oAuth

2010-09-20 Thread Joel Clinger
Hello, Does the streaming API still support Basic Auth? Is there going to be any python module like tweepy that will support oAuth and the streaming API? Thanks. Joel -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitter

Re: [twitter-dev] Streaming API

2010-09-07 Thread John Kalucki
You should use the Streaming API for large scale integrations. We're not doing much whitelisting for the REST API at the moment, but the shadow role on the Streaming API is generally available. If all of your users are public, use the shadow role on stream.twitter.com/1/statuses to get all of their

Re: [twitter-dev] Streaming API

2010-09-07 Thread Tom van der Woerdt
1) Yes: the timelines are easier to use and more flexible, while the streaming API gives you realtime statuses and no problems with rate limits. 2) Streams. I'm not part of the Twitter team, but I really think that they would recommend Streams. Of course, it depends a bit on the situation. 3) I thi

[twitter-dev] Streaming API

2010-09-07 Thread Rajat
Hi All, I am a bit torn on which API to use for my application. Have looked in twitter dev pages and did search internet but couldn't find comprehensive information. I need to get tweets from certain users in my application. I don't know how many users at this moment but I would like to build a s

[twitter-dev] Streaming api returning 401 error on phrase tracking(logical AND)

2010-08-31 Thread Karthik K
I am getting strange results when using streaming api with and without Oauth. Without oauth i am able to track phrases whereas with oauth i get a 401 error, able to track normal words with oauth.Is there any restriction on phrase tracking? Could not find any pointers in the docs.btw i use twitter4j

Re: [twitter-dev] Streaming API limits

2010-08-16 Thread Matt Harris
Hi Thiago, We allow each account to have one standing connection to the streaming API. Multiple connections receive the same stream of Tweets so connecting multiple times would not give access to any more Tweets. If you need more to have more track keywords you can contact us explaining your use c

Re: [twitter-dev] Streaming API limits

2010-08-16 Thread Tom van der Woerdt
On 8/16/10 4:38 PM, Thiago Souza wrote: > Hi, > > I know that it's possible to track up to 200 keywords per account, > but how many accounts per IP is allowed? > > Regards, > Thiago Souza Hi Thiago, I don't think that Twitter will give you these numbers. Just don't create more connections t

[twitter-dev] Streaming API limits

2010-08-16 Thread Thiago Souza
Hi, I know that it's possible to track up to 200 keywords per account, but how many accounts per IP is allowed? Regards, Thiago Souza

Re: [twitter-dev] Streaming API (filter) and retweets, JSON Output

2010-08-15 Thread Mark McBride
A retweet will have an embedded "retweeted_status" object. Example (first one from spritzer, not necessarily a favorite): { "coordinates": null, "favorited": false, "created_at": "Mon Aug 16 04:03:17 + 2010", "truncated": false, "retweeted_status": { "coordinates": null, "fa

[twitter-dev] Streaming API (filter) and retweets, JSON Output

2010-08-13 Thread Joe
If we are listening to the stream api/filter using track and getting JSON output, I cannot see anywhere that I can determine if something is a retweet except explicitly checking the text of the tweet. Am I missing something or should I simultansously be listing to the retweet stream and try to cro

Re: [twitter-dev] Streaming API and lists

2010-08-12 Thread Matt Harris
Hi Thiago, The streaming API allows you to follow user IDs and track keywords but not lists directly. Instead you need to follow all the user IDs of the list and then assemble their Tweets on your server to recreate the list. Hope that helps, Matt On Thu, Aug 12, 2010 at 8:39 AM, thiago wrote:

Re: [twitter-dev] Streaming API and lists

2010-08-12 Thread John Kalucki
If everyone on the list is public, you can fetch the user ids via REST, then use follow. Protected accounts won't show, of course. Also, on User Streams, you cannot specify your follow list. -John Kalucki http://twitter.com/jkalucki Twitter, Inc. On Thu, Aug 12, 2010 at 8:39 AM, thiago wrote:

[twitter-dev] Streaming API and lists

2010-08-12 Thread thiago
Hello there, Does anyone knows if it's possible to use the streaming api to follow a list instead of a user? I already tried using the list id as the follow parameter with no success... Regards, Thiago Souza

[twitter-dev] streaming API help (regular API works)

2010-08-08 Thread ianrose
Hi - I hope I am not posting a question that has previously been answered - I tried searching the archives but to no avail. I am trying to get the 'sample' stream API working but am getting 401 Unathorized errors. For debugging purposes, I am using curl for now. The following command fails (401)

Re: [twitter-dev] Streaming API for lists

2010-07-30 Thread John Kalucki
We were planning to do lists, but we postponed the feature to get the bulk of User Streams to market sooner and to also get User Streams out to more users. We'll consider lists as an add-on later. -John Kalucki http://twitter.com/jkalucki Infrastructure, Twitter Inc. On Fri, Jul 30, 2010 at 4:1

[twitter-dev] Streaming API for lists

2010-07-30 Thread sexyprout
Hey there! I wanted to know if Twitter will integrate lists into the streaming API. Thx.

Re: [twitter-dev] Streaming API time drifting problem and possible solutions

2010-07-08 Thread Pascal Jürgens
Larry, moreover, I assume you checked I/O and CPU load. But even if that's not the issue, you should absolutely check if you have simplejson with c extension installed. The python included version is 1.9 which is decidedly slower than the new 2.x branch. You might see json decoding load drop by

Re: [twitter-dev] Streaming API time drifting problem and possible solutions

2010-07-08 Thread Pascal Jürgens
Larry, have you decoupled the processing code from tweepy's StreamListener, for example using a Queue.Queue oder some message queue server? Pascal On Jul 8, 2010, at 17:31 , Larry Zhang wrote: > Hi everyone, > > I have a program calling the statuses/sample method of a garden hose > of the Str

Re: [twitter-dev] Streaming API time drifting problem and possible solutions

2010-07-08 Thread John Kalucki
Absolutely do not reset the connection and reconnect. Connections should be long-lived on the Streaming API. This is almost certainly a problem with the read throughput of your client, or, less likely, with bandwidth from your system. Run curl(1) from the same system and grep for the date field. I

[twitter-dev] Streaming API time drifting problem and possible solutions

2010-07-08 Thread Larry Zhang
Hi everyone, I have a program calling the statuses/sample method of a garden hose of the Streaming API, and I am experiencing the following problem: the timestamps of the tweets that I downloaded constantly drift behind real-time, the time drift keeps increasing until it reaches around 25 minutes,

Re: [twitter-dev] Streaming API and Oauth

2010-07-05 Thread Pascal Jürgens
Quoting John Kalucki: > We haven't announced our plans for streaming and oAuth, beyond stating that > User Streams will only be on oAuth. Right now, basic auth and oAuth both work on streaming, and that won't change when basic for REST turns off. Since there's no set shutdown date yet for bas

[twitter-dev] Streaming API and Oauth

2010-07-05 Thread Zhami
The Oauth Overview page has sections for three APIs: REST, Search, and Streaming. The bottom of the page displays a ribbon stating that "The @twitterapi team will be shutting of basic authentication for the Twitter API." Does this mean all of the Twitte

Re: [twitter-dev] streaming api - track - whitelisting for 10,000 keywords

2010-07-02 Thread Peter Denton
Thanks Taylor and John. On Fri, Jul 2, 2010 at 7:03 AM, Taylor Singletary < taylorsinglet...@twitter.com> wrote: > Hi Peter, > > First, make sure that you've used this form acquire garden hose > access: https://twitter.com/help/request_streaming > > Second, send an email to a...@twitter.com from

Re: [twitter-dev] streaming api - track - whitelisting for 10,000 keywords

2010-07-02 Thread Taylor Singletary
Hi Peter, First, make sure that you've used this form acquire garden hose access: https://twitter.com/help/request_streaming Second, send an email to a...@twitter.com from the email address associated with the same Twitter account you filled that form out with, requesting "Track Restricted" strea

[twitter-dev] streaming api - track - whitelisting for 10,000 keywords

2010-07-02 Thread Peter Denton
Hello, Can someone point me to the right location for increasing streaming api, track keywords limit? Thanks Peter

  1   2   3   >