The set of streaming APIs offered by Twitter give developers low latency access to Twitter's global stream of Tweet data.
Questions tagged [twitter-streaming-api]
392 questions
0
votes
1 answer
Validate user in Twitter4j?
Is there a way i can make a user enter his username and password and validate his account? My reasoning behind this is making sure the user actually owns that username, and in order to do that, they must have their password. Is there any way i could…

Hunter Mitchell
- 7,063
- 18
- 69
- 116
0
votes
1 answer
How to restart listening Twitter straming Api Again?
I'm using Twitter4j to get Tweets real time via. Twitter streaming API and it is working fine . Sometime it throws Exception due to network connecting issue(or some other reason) which is also OK to me however I'm not able to recover from this…

Raj
- 1,698
- 4
- 22
- 39
0
votes
1 answer
Streaming api cannot retrieve retweet message "'NoneType' object has no attribute 'get' "
Here is my code... It works for getting the individual tweets, not retweets.
Does anyone have any idea? :(
import tweepy
CONSUMER_KEY = ''
CONSUMER_SECRET = ''
ACCESS_TOKEN = ''
ACCESS_TOKEN_SECRET = ''
def OAuth():
auth =…

user2641609
- 3
- 2
0
votes
1 answer
adding location to twitter streaming API makes OAuth Fail
I've successfully connected to twitter streaming API with the track parameter. I'm using OAuth Authentication and have written my own classes (so not using any libraries).
I've just added the location parameter. I have added this to the…

Tim Windsor
- 319
- 1
- 5
- 17
0
votes
2 answers
accessing twitter streaming api using node js
Hi I am trying to access the twitter rest api
https://stream.twitter.com/1.1/statuses/filter.json
I am using nodejs.
For authentication I have used ntwitter. Authentication is
going through fine. I get the success message.
But once it passes…

v09
- 840
- 2
- 12
- 22
0
votes
1 answer
I'm using the twitter4j library to access the public twitter stream
I'm using the twitter4j library to access the public twitter stream. I'm trying to make a project involving geotagged tweets, and I need to collect a large number of them for testing.
Right now I am getting the unfiltered stream from twitter and…

Rashmi Rai
- 23
- 6
0
votes
1 answer
Twitter API delete json messages
I'm using the Twitter streaming API and have come across these messages:
{"delete":{"status":{"id":1234,"id_str":"1234","user_id":3,"user_id_str":"3"}}}
Are there any other delete type messages other than status??
I'm finding it difficult to find…

shadonar
- 1,114
- 3
- 16
- 40
0
votes
1 answer
Fetch tweets with a specific hashtag using Scribe
Can I use scribe to fetch tweets with a specific hashtag using streeming api? I work in java and I want use scribe in an appengine project. Is it possible? I try the following code:
OAuthService service = new ServiceBuilder()
…

Mari
- 83
- 1
- 10
0
votes
1 answer
call server to execute method from client
I'm playing working on a twitter streaming app using meteorjs. However, I have a problem destroying the stream and replace with a new one when the user enter a new track keyword. How am I able to call twitter streaming to destroy and stream new…

You Hock Tan
- 995
- 2
- 9
- 18
0
votes
1 answer
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 are always 180k i believe its a limit of 50…

mijailr
- 71
- 1
- 12
0
votes
1 answer
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'))
iterator = twitter_stream.statuses.sample()
for…

khalid13
- 2,767
- 2
- 30
- 48
0
votes
1 answer
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
TweetStream::Client.new.track('javascript') do |status|
puts…

Sara
- 2,729
- 7
- 22
- 30
0
votes
2 answers
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 using tweet-pipe for the Twitter Stram API…

Tyler
- 829
- 11
- 26
0
votes
1 answer
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 the Twitter doesn't like the idea of delaying the…

Hemant
- 619
- 2
- 6
- 17
0
votes
1 answer
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 scripts connect to twitter just once.
I would like not…

meso_2600
- 1,940
- 5
- 25
- 50