Retrieving tweets based on geolocation AND keywords in Streaming API doesn't work?
in
Contributed Library Questions
•
4 months ago
I am using the following code to store keywords and coordinates for tracking locations and keywords in the Filter of Streaming API via twitter4j but it seems like the keywords are not taken into consideration. Twitter gives all the tweets (based on location).
- FilterQuery fq = new FilterQuery();
- fq.locations(coordinates);
- fq.track(keywords);
1