I am using twitter4j java library to make a twitter API search for given keywords. The rearch works fine, but all the tweets returned have the geo
field set to null
.
I have taken a look to the twitter developers documentation and all te results there, have geo
null.
Here is my java code:
TwitterFactory twitterFactory = new TwitterFactory();
Twitter twitter = twitterFactory.getInstance();
Query query = new Query("query");
query.setRpp(10);
QueryResult result = twitter.search(query);
I list all the tweets but none of them has geo code.
Is there any way I can get the geo location of the tweet /user?