The set of streaming APIs offered by Twitter give developers low latency access to Twitter's global stream of Tweet data.
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";
...
5
votes
1answer
1k views
Facebook Fan Page vs. Twitter Streaming API
What is the counterpart of Twitter Streaming API for Facebook Fan Page?
How can i get real time updates from a Facebook Fan Page?
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 = ...
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",
...
3
votes
2answers
159 views
Twitter Rate Limiting IP/OAuth Concerns
I have a series of webapps that collects all terms relating to a subject using the Public Streaming API. So far, I've been taking a very, very arduous route of creating a new account for each stream, ...
2
votes
1answer
582 views
What's wrong with my Twitter stream bounding boxes?
Given this url, I should see tweets around London, right?
http://stream.twitter.com/1/statuses/filter.json?locations=51.23,-0.28,51.68,0.25
But nothing happens :(
I tried different areas but I ...
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
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 ...
2
votes
1answer
952 views
Detect Tweet deletion with Twitter Streaming API
The Twitter Streaming API can be used to detect a phrase using the following query:
http://stream.twitter.com/1/statuses/filter.json?track=phrase
However, the same query doesn't seem to detect when ...
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 ...
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 ...
2
votes
1answer
304 views
Twitter Streaming API with Tweepy rejects oauth
I'm trying to access the Twitter stream which I had working previously while improperly using Tweepy. Now that I understand how Tweepy is intended to be used I wrote the following Stream.py module. ...
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 ...
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 ...
2
votes
0answers
519 views
Keeping Twitter Streaming API with Phirehose and CakePHP alive
I have been running the Twitter Streaming API via the Phirehose lib, also using cakePHP as my framework.
Running Phirehose works correctly, successfully connecting to the Streaming API and returning ...
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?
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
1answer
650 views
YAJL stream parsing and Twitter streaming API
Twitter streaming API returns blocks of JSON, but my YAJL parser stops after the first one. I guess this is because every block of JSON is independant (i.e: not in a global array), so YAJL has no way ...
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 ...
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
vote
2answers
81 views
Distributing Twitter Widget Among Application Users
Hey guys is there anyway to circumvent the Twitter rate limit by using a Twitter widget and embedding it in the end users browser? In other words would using Twitter Search widget apart of the user's ...
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
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 ...
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 = ...
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 ...
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?
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 ...
0
votes
1answer
185 views
Twitter Streaming API with Twitter4j
I need to stream all public tweets which contain a certain hashtag AND replies to a certain account (which I own) and store them in a database. However, I can't get Twitter4j to do this for me.
Is ...
0
votes
2answers
150 views
What are the pro and cons of hosting the twitter streaming api on Amazon Elastic Compute Cloud (Amazon EC2)
for a research project of mine I am writing an sentiment analysis tool for analyzing tweets.
My Question now is: What are the pro and cons of hosting the twitter streaming api on Amazon Elastic ...
0
votes
1answer
860 views
Twitter Streams API with Heroku
Hi I'm really becoming mad with this problem. I need to continuously post to another server some tweets, in realtime. They are filtered by a hashtag.
I'm using this solution: ...
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.
0
votes
1answer
242 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 ...
0
votes
1answer
180 views
Python - Socket Timeout reason? Network connection loss or nothing to read?
Basically: Is there a way to tell (Python 2.7) when a socket times out if it is because nothing has been delivered to the socket or because the network connection is down?
I have a Python application ...
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
114 views
Twitter - Constant search for term
I wonder if anyone can help me, I'm getting a little confused as to
which API to use. If anyone can offer some guidance I would really
appreciate it.
I'm trying to create an website where users ...
0
votes
3answers
1k views
Consume Twitter streaming API into database
I want to consume a few keywords on the Twitter streaming API (they're low traffic, so performance is not a huge issue) and log each Tweet's JSON data into a database. I want the service to run on my ...
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 ...
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 ...
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
14 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:
...
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 ...
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
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
2answers
212 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
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 ...
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
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 ...
