Hi,
While working on streaming API, most of tweet’s geo location were null. If it was null, how do we get location. Also, I tried with multiple filter query option ( location and keywords) but I got either the tweets based on location or based on the keywords. But I want to get tweets based on the location and those tweets should have the keywords.
String keywords[] = {"health", "politics"};
double[][] loc={{-122.75,36.8},{-121.75,37.8}};
fq.locations(loc);
fq.track(keywords);
Help please!!!