The set of streaming APIs offered by Twitter give developers low latency access to Twitter's global stream of Tweet data.

learn more… | top users | synonyms

0
votes
1answer
31 views

Count tweets for a hashtag

i want to know if there are any way to count the hashtags from twitter using the streaming API like hashtags.org i have made a script using python and tweetstream and i can make a count but for TTs ...
2
votes
1answer
35 views

Passing Longitude and Latitude in Twitter Streaming API of Pakistan

I am having problem in passing longitude and latitude format of Pakistan in Twitter Streaming API. This API provides some sample examples of passing longitude and latitude of some cities. The location ...
-1
votes
1answer
26 views

Saving Twitter Streaming APIs results

Hi all so after a lot of hassle I managed to finally work my way around achieving and delimiting the JSON returned by Twitter Streaming APIs. How do i store the data returned by [NSJSONSerialization ...
0
votes
1answer
49 views

Python non-blocking for loop

I'm using the twitter python package in pip to access the TwitterStream class. The code for this looks somewhat like this: twitter_stream = TwitterStream(auth=UserPassAuth('joe', 'joespassword')) ...
0
votes
0answers
11 views

Twitter Streaming API + iOS5+ Tutorials

im building an iOS App and don't know where to start. Does anyone have pointers to some good sample codes or tutorials that will help me understand how to access and parse Twitter Streaming APIs. I ...
0
votes
0answers
13 views

Twitter Streaming API track shortened URLs

I want to count the twitter mentions of a url with different paths. Therefore I am using the twitter streaming api with the track filter like: ...
1
vote
0answers
71 views

Automatically escaping JSON

I'm pulling tweets via the Twitter Streaming API and tokenizing the text. I want to store everything. My current code involves with open("tweets.json", "a") as f: f.write(cjson.encode(tweets)) ...
1
vote
1answer
29 views

TwitterJS and Twitter 1.1 API

Will TwitterJS no longer work after May 7th, when the Twitter 1.0 API goes away? https://code.google.com/p/twitterjs/ Thanks
0
votes
0answers
20 views

Smartly query Twitter Api

I'm trying to figure out a way to get the 3-5 most recent tweets of a given Twitter user's followers. However, in terms of the number of requests I would have to make for this are huge - at one ...
3
votes
2answers
357 views

The Requests streaming example does not work in my environment

I've been trying to consume the Twitter Streaming API using Python Requests. There's a simple example in the documentation: import requests import json r = ...
0
votes
0answers
23 views

Tweetstream printing tweets to console but not page

I'm using the tweetstream gem and the tweets I'm tracking show up on the console but not on the page when I load it. Here's the action in my controller: def stream ...
0
votes
2answers
210 views

Heroku, Socket.IO, Node.js

I'm setting up a node.js twitter streaming app on heroku. It works perfectly until a second client makes a connection. This is something I wasn't expecting until I showed it to someone :( I am ...
0
votes
0answers
36 views

Can not use “follow” in the streaming api in ntwitter. Recieving Unspecified 'error' event

I need to stream tweets from a single twitter account but I'm not sure what I'm doing wrong. When using 'track' the stream works fine (streaming trending topics). But when I use 'follow' the code ...
0
votes
0answers
113 views

Twitter Streaming REST API seems to be ignoring the “track” parameter when using Twitter4j

I've been having trouble with the streaming API, wherein any "track" parameters seem to be getting ignored entirely. The result is as though no "track" parameter was specified -- i.e, I get an ...
0
votes
1answer
140 views

Efficiently processing Twitter streaming API data in python

I am currently using twitter streaming API for my project using tweepy lib and python (2.7.3). The data that I am receiving is at very high rate. Is it possible to slow it down? I read somewhere that ...
2
votes
1answer
87 views

How to manage different TwitterStream from different Thread

i'm trying to execute different Thread using different TwitterStream object with an single authentication: public class Support { private static final String accessToken = "xxxxxxx"; private ...
0
votes
0answers
30 views

Twitter live search stream

I am looking for a solution that would provide subscription-like responses that would contain results for particular tag from twitter. I saw plenty of REST/ STREAM scripts for node.js but these ...
0
votes
1answer
296 views

Twitter4j Streaming with Geolocation

I am using Twitter4j streaming API. I am using a geolocation constraint to get the tweets only from a specific area. Here is that part of the code: twitterStream.addListener(listener); ...
0
votes
1answer
102 views

How to track more than 400 keywords using Twitter Stream API?

The question is simply the title. Please don't tell me to go for a Twitter Data reseller like Gnip or Datasift as they're so expensive. Thank you.
2
votes
0answers
93 views

Timeout Python Tweetstream Api

I am using the following code to get tweets from twitter using Python Tweetstream library but if I use certain words which have no meaning or words for which there are no tweets the streaming get ...
0
votes
1answer
226 views

How to use twitter4j along with storm

I use the twitter4j query interface to filter tweets http://twitter4j.org/javadoc/twitter4j/Query.html. But the twitter spout in ...
2
votes
2answers
214 views

Performance testing Twitter Streaming API consumer

I have a service that consumes twitter posts in realtime using the Twitter Streaming API. I have built a background process which connects to the stream and pushes tweet into Redis. This is built ...
0
votes
1answer
427 views

How to filter retweets and replies from Twitter User Stream using Twitter4j?

I'm using Twitter4j TwitterStream.user() to read the timeline for an authenticated user. I'm interested only in tweets from users that my user follows. About 99% of the statuses that I get from the ...
0
votes
1answer
114 views

Encoding spaces for exact bigram match in twitter streaming API track keywords

I'm using the Twitter streaming API. It works wonderfully for single words, but seemingly cannot filter by an exact bigram (two word string). I'm testing this by searching for common words, that are ...
0
votes
1answer
120 views

Twitter Streaming API vs. Twitter Search for live events streaming

I am going to be providing a twitter feed inside and Android app that allows re-tweets, favorites and reply to the tweet. I understand that there is a search api and also a streaming api. This is a ...
0
votes
1answer
132 views

Avoid 420s with Streaming API?

I have a python script that hooks into the Twitter Streaming API using basic authentication and making use of the tweetstream module. Im gathering around 10 tweets a minute. I was getting ...
0
votes
1answer
241 views

Twitter4j TwitterStream Stop/Close

I have an Android app that starts a TwitterStream with Twitter4j and I am looking for help as to how to stop/close it if I do not need the stream anymore. I start the stream on a preference change ...
3
votes
2answers
109 views

Pull data from PHP object received from twitter streaming api

I'm using tmhOAuth library to parse twitter stream in php. It returned me variable $data with this object object sample for stackoverflow { "created_at":"Wed Jan 02 13:37:54 +0000 2013", ...
1
vote
0answers
139 views

node.js and socket.io uncaught error

i am trying to use ntwitter ,node.js and socket.io for accessing twitter user stream.the twitter user stream works fine and i can get the tweets in real time.the tweets get displayed in the console ...
0
votes
1answer
245 views

Twitter Streaming API - filtering by urls

I am trying to filter tweets from the Streaming API using a url in the track parameter. However I'm not getting the tweets I expect. My suspicion is that the filter doesn't apply to the expanded url ...
0
votes
1answer
90 views

Close Twitty Twister Stream

I'm currently using twitty-twister to stream live Twitter messages into a long-running app, however sometimes I need to restart the stream to change the tracking parameters. Is it possible to ...
0
votes
1answer
729 views

Twitter Stream API with PHP/Javascript Implimentation

I am trying to create website to show a live twitter feed concerning a particular hash tag, say #baseball or from a particular user @twitter, my filter looks like #baseball OR @twitter Now I have ...
2
votes
1answer
275 views

How to change keywords on twitter stream api using twitter4j?

I am using twitter4j to connect to Stream API. I understand that from this post, Change Twitter stream filter keywords without re-opening stream, there is no way to change keywords while the ...
2
votes
2answers
84 views

Copying twitter stream to objects: can i fall behind?

Currently I'm working on an app that reads the stream from Twitter API and parses it into objects. At the moment I read the stream and use ReadObject(...) from DataContractJsonSerializer to make my ...
1
vote
1answer
140 views

Is there a Twitter Streams API for Ruby?

Does anyone know of a Ruby gem or plugin that provides a simple interface to the Twitter Steams API?
0
votes
1answer
230 views

Phirehose exits when using setFollow

Currently I'm using Phirehose to track keywords in Twitter streams and want to track users as well. But when I use setFollow() in my checkFilterPredicates() method, Phirehose stops working after the ...
1
vote
1answer
470 views

How to handle KeyboardInterrupt (Ctrl-c) nicely with pycurl?

I am writing a Python script using pycurl to consume Twitter's Sreaming API. Here's a short snippet that does exactly that (simply put your Twitter login/password to test it): import pycurl user = ...
6
votes
4answers
1k views

Using the cURL output

I'm planning to record the live tweets on a particular topic. For the same, I'm using the twitter stream API with cURL in PHP. Here is the code: <?php $username = "xxxxx"; $password = "xxxxx"; ...
0
votes
1answer
228 views

How to exclude mentions in the Twitter streaming API

I am using the Twitter Streaming API since I need to get all posts on the home timeline as well as lists and hashtags the user is following. However, this also returns mentions (which do not appear on ...
1
vote
1answer
337 views

Twitter streaming API - trying to get results based on location/bounding box

I am playing around with the Twitter Streaming API and have got my head around it at a basic level, but I can't seem to get reliable results for the location - I'm using a bounding box as specificed ...
0
votes
1answer
552 views

Collecting and Processing data with PHP (Twitter Streaming API)

after reading through all of the twitter streaming API and Phirehose PHP documentation i've come across something I have yet to do, collect and process data separately. The logic behind it, If I ...
0
votes
2answers
206 views

How run twitterstream in background and store statuses into the database

I am using twitterstream to fetch tweets from twitter and store them to the database. I have been successful in fetching the tweets but not able to run it in the background. Can any one tell me how to ...
1
vote
1answer
130 views

adding new users to twitterstream follow

I am trying to get the tweets using twitterstream gem. list_of_users = [612473, 759251, 1367531, 6017542, 6509832] TweetStream::Client.new.follow(list_of_users) do |status| puts "follow ...
0
votes
1answer
427 views

Ruby tweetstream stop unexpectedly

I use tweetstream gem to get sample tweets from Twitter Streaming API: TweetStream.configure do |config| config.username = 'my_username' config.password = 'my_password' config.auth_method ...
0
votes
0answers
111 views

twitterstream daemon broke down

I am using [twitterstream][1] to fetch tweets from streaming API. I have daemonized the streamer using standard method in twitterstream. Its been around 15 days and the daemon stopped. Nothing in the ...
0
votes
1answer
341 views

Streaming api number of terms limit

I am using twitter streaming api to track terms. I knot that there is a limit that each term should not be more than 60 characters in length. I want to know is there ant limit on the number of ...
0
votes
1answer
269 views

Libcurl Callback Function Might Not be Working for Twitter Streaming [duplicate]

Possible Duplicate: Using HTTP authentication with libcurl in C for Twitter Streaming I was able to write a C code that receives a stream of Tweets from streaming API. But the stream is not ...
1
vote
1answer
105 views

Subscribe to several Twitter Streams API with same credentials

Is there any way to open multiple status streams with the same credentials to track several words?
1
vote
1answer
376 views

Restart a Perl Script on Error? (Perl Newbie)

I am using AnyEvent::Twitter::Stream module obtained from CPAN. I am also new to Perl, and this script which I modified from the example fires an event to insert a bit of twitter data into a database ...
1
vote
2answers
1k views

Twitter Stream Filter By Location

Is it possible for Twitter Stream API to filter tweets by the location field? As you can see in the sample JSON entry below that there is "location":"philippines" field - value. Now, what I wanted is ...

1 2