client.stream(‘statuses/filter’, {track: “football,fifa”, locations: -122.75,36.8,-121.75,37.8 }
When I stream using ‘statuses/filter’ API with both track & locations. I am receiving tweets with the keyword football or the tweets tweeted from the location. It performs OR operations.
I want tweets which tweeted from the location with the keyword football. Do I need to pass any extra parameters for AND action.
Because of OR condition I am processing bulk number of unwanted tweets.