Questions tagged [twitter-streaming-api]

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

392 questions
0
votes
1 answer

Using callbacks with Socket IO

I'm using node and socket io to stream twitter feed to the browser, but the stream is too fast. In order to slow it down, I'm attempting to use setInterval, but it either only delays the start of the stream (without setting evenly spaced intervals…
rekhers
  • 1
  • 3
0
votes
1 answer

Phirehose setTrack not working with setLocation

I'm using Phirehose to pull tweets using the Twitter Streaming API. I'm wanting to pull geotagged tweets with certain keywords, like so: $sc->setLocations(array(array(-180,-90,180,90))); //any geotagged…
Scott
  • 1,863
  • 2
  • 24
  • 43
0
votes
0 answers

How to slow down tweets in Streaming API

I'm using node and socket io to stream tweets in the browser using the Twitter Streaming API. I've tried to slow down the speed of the stream by using setTimeout/setInterval on the stream event, but this only ever seems to delay the start of the…
rekhers
  • 1
  • 3
0
votes
1 answer

How to filter by keyword and location with the Twitter Streaming API

I'm trying to find data about a keyword's use within the United States, using node and socket.io. I know that the API itself does not support the logical AND of the track and locations filters, and that I must write a custom filter for one of them…
0
votes
1 answer

Get user data by using Twitter Streaming API, Twitter Rest API

I do some analysis on twitter users features like number of following , number of retweet, number of friend , etc I have all my information from Twitter Rest API But there is an Rate Limit Exceeded error occurred when I tried to retrieve all data…
RProgrammer
  • 47
  • 1
  • 8
0
votes
2 answers

java.lang.NoClassDefFoundError when using twitter hosebird

I am trying to use Twitter Streaming APIs so that I can filter some tweets real time and display. I am trying to follow https://github.com/twitter/hbc . I am not used to using Maven, so I found this jar file at…
kosta
  • 4,302
  • 10
  • 50
  • 104
0
votes
1 answer

I do not get my own statuses via Streaming API - is this normal?

I have a service that successfully monitors Twitters' statuses via Streaming API (the filter endpoint with the track parameter). All works well and I receive a lot of tweets with predefined keywords. The only problem is that I do not get my own…
Stan
  • 8,683
  • 9
  • 58
  • 102
0
votes
1 answer

How to OAuth and use the Filter Query twitter4j Android

Basically I want to search for a query in the live stream of tweets (but i only want to know how many tweets are received within a time period) with the twitter based Twitter4j in Android say: FilterQuery query = new FilterQuery(); String[]…
0
votes
1 answer

Twitter analytics data via Stream API using OAuth (access token)

I want the twitter analytics data, some values like: retweets, *followers, demographics and geographic data. I have Access Tokens for multiple users, and I want to access their data of Twitter Analytics. I have checked this thread too: C# console…
0
votes
1 answer

How to stream first 5 tweets? And how to stream only those users enabled geographic info and real name?

I am trying to use tweepy to stream some specific data, I read the tweepy documentation but wasn't helping. I would like to do the followings: Printout only the first 5 tweets, then stop the script. I tried to use a "for" loop, but it keeps…
KubiK888
  • 4,377
  • 14
  • 61
  • 115
0
votes
1 answer

Twitter stream.on Unexpected Token E

I am trying to set up a search button on my web application that retrieves all twitter tweets with the search input using the streaming API. This is my client-side code: index.ejs
0
votes
1 answer

Does an Amazon Kinesis stream need to stay open in order to continue to put data into it?

I'm running a script that grabs tweets and puts them in a Kinesis stream. If I stop the script from running and wait maybe 5-10 minutes to start it again, it seems to accept the new data and returns the ShardID and SequenceNumber in a response…
0
votes
2 answers

Bad request with Twitter Streaming API and ReactPHP

I am working on a project that needs realtime data from twitter streaming api. To do that I am using ReactPHP. When I make the request to the twitter streamintg API, I am getting BadRequest response. The request (with the payload) is the…
Germán Lena
  • 867
  • 1
  • 6
  • 15
0
votes
1 answer

Twitter Streaming API: limitation notice

What does it mean Got track limitation notice: INT (where INT is a number) when streaming from the Twitter API?
Eleanore
  • 1,750
  • 3
  • 16
  • 33
0
votes
1 answer

Tweepy Python Tuple Error no attribute encode

I am using tweepy and python to gather tweets based on certain keywords and then writing those status updates (tweets) to a CSV file. I do not consider myself a programmer and I am really lost on this. Here is the Error: > Traceback (most recent…
RoninUTA
  • 43
  • 7