Hello, i’m trying to get, in API level, all the tweets from people who follow me with a specific #hashtag.
I know this is possible using follow + track methods separately. But here is a problem.
It would be nice to filter that in API level since some of my clients profiles has more than 1 million followers, leading me to have performance problems.
Is there anyway to do that?
I am using Twitter4j in java, for convenience, but I just need to know if the twitter API provides a way to do that.
qry.follow(idsArray).track(keywords);
// this causes to call follow OR track, and I need something like: follow AND track.
Thanks in advice, any help will be appreciated.