我正在使用 twitter4j 获取 Twitter 用户的位置:
Twitter twitter = new TwitterFactory().getInstance();
twitter.setOAuthConsumer(CONSUMER_KEY, CONSUMER_SECRET);
long id = accessToken.getUserId();
User user = twitter.showUser(id);
System.out.print("LOCATION: " +user.getLocation());
user.getLocation()
不包括国家。如何使用 twitter4j 获取用户所在的国家/地区?