-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
48 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
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
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 ...
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
112 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
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
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
225 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 ...
3
votes
2answers
108 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
237 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
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 ...
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. ...
0
votes
1answer
112 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
2answers
149 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 ...
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, ...
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
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 ...
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
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 ...
2
votes
1answer
949 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 ...
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 ...
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 ...
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?
0
votes
1answer
849 views

Phirehose hangs?

I'm trying to use Phirehose to get Twitter tweets for a particular keyword but it always seems to hang when I launch the page on my site. There are two examples, I have: 1) using 140dev's work (with ...