Twitter Streaming Filter API: Not seeing tweets
NickName:loesak Ask DateTime:2015-04-23T00:33:46

Twitter Streaming Filter API: Not seeing tweets

I'm dabbling with the twitter streaming filter API (https://dev.twitter.com/streaming/reference/post/statuses/filter). I have two twitter accounts. One account I'm using for the API calls, the other is my personal account which I'm using for testing. In the API call, I'm using the "follow" parameter to follow the tweets of many users (like 50), including my personal account. However, when i publish a tweet from my personal account, sometimes i see the tweets and sometimes i don't. For the two tests tweets I sent, they arrived long after the tweet was sent, maybe 5 minutes or so (slow for streaming standards).

My question is, how does this API endpoint work? Does it guarantee delivery of all tweets for users you're following or is it only a sample of the tweets? And if it does guarantee delivery, why is it so slow? Does it only deliver tweets that have arrived after the time the stream connection is made?

Thank you


Copyright Notice:Content Author:「loesak」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/29803752/twitter-streaming-filter-api-not-seeing-tweets

More about “Twitter Streaming Filter API: Not seeing tweets” related questions

Twitter Streaming Filter API: Not seeing tweets

I'm dabbling with the twitter streaming filter API (https://dev.twitter.com/streaming/reference/post/statuses/filter). I have two twitter accounts. One account I'm using for the API calls, the othe...

Show Detail

How to get streaming tweets using twitter-api in clojure?

I am new to clojure. I am trying to get the streaming tweets through clojure. I'm using twitter-api library to get the streaming tweets and the code snippet is the following. (ns hello-twitter (...

Show Detail

Why are some geo tagged tweets null? (Twitter Streaming API)

I'm using the twitter streaming api to gather tweet locations from around the world. I'm receiving plenty of live tweets but some of the geo tags are null. I'm using the statuses/filter api with the

Show Detail

Tweets from Twitter Streaming API

Using Twitter Streaming API getting tweets from a specific query. However some tweets came with different codification (there are boxes instead of words). Is there any way to fix it?

Show Detail

Extracting Old Tweets using Twitter streaming API using Geo-Location Filter

My aim is to extract old tweets for the entire month of Jan 2017 for New York City ('locations':'-74,40,-73,41') using python. I am able to get the live streaming tweets using the following code: ...

Show Detail

Python 2.7 twitter streaming api language filter

I am trying to use twitter streaming API and the language filter. As suggested by the Twitter API manual (https://dev.twitter.com/streaming/overview/request-parameters#language), I put the following

Show Detail

Filter #tag tweets for a specific account using Twitter Streaming API

I am able to get tweets from a specific account using the streaming API. I can also manage to get tweets for specific #tags like below: endpoint.trackTerms(Lists.newArrayList("twitterapi", "@myTwi...

Show Detail

How to track tweets with links with the streaming api?

I'm currently using the streaming API to track tweets with a specific hashtag but is it possible to filter them even more to only include tweets with links? I tried adding "filter:links" like in the

Show Detail

Using the Twitter streaming API, is it possible to only display tweets from a specific user?

I am currently using the Twitter API to retrieve tweets made by certain users. For the sake of this question, we will use @justinbieber as an example. When using the https://stream.twitter.com/1.1/

Show Detail

Filter tweets using "filter_level" in Twitter streaming API

I am using statuses/filter and am trying to filter the tweets from the twitter stream based on the parameter "filter_level". query = ["Donald Trump","Cristiano Ronaldo"] numberOfTweets = 1000

Show Detail