本文整理了Java中twitter4j.Twitter.getAvailableTrends()
方法的一些代码示例,展示了Twitter.getAvailableTrends()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Twitter.getAvailableTrends()
方法的具体详情如下:
包路径:twitter4j.Twitter
类名称:Twitter
方法名:getAvailableTrends
暂无
代码示例来源:origin: stackoverflow.com
Twitter twitter = new TwitterFactory().getInstance();
ResponseList<Location> locations;
locations = twitter.getAvailableTrends();
System.out.println("Showing available trends");
for (Location location : locations) {
System.out.println(location.getName() + " (woeid:" + location.getWoeid() + ")");
}
代码示例来源:origin: org.twitter4j/twitter4j-async
@Override
public void invoke(List<TwitterListener> listeners) throws TwitterException {
ResponseList<Location> locations = twitter.getAvailableTrends();
for (TwitterListener listener : listeners) {
try {
listener.gotAvailableTrends(locations);
} catch (Exception e) {
logger.warn("Exception at getAvailableTrends", e);
}
}
}
});
代码示例来源:origin: org.mule.modules/mule-module-twitter
/**
* Returns the sorted locations that Twitter has trending topic information for.
* The response is an array of "locations" that encode the location's WOEID
* (a <a href="http://developer.yahoo.com/geo/geoplanet/">Yahoo! Where On Earth ID</a>)
* and some other human-readable information such as a canonical name and country the
* location belongs in.
* <br>The available trend locations will be sorted by distance to the lat
* and long passed in. The sort is nearest to furthest.
* <p/>
* {@sample.xml ../../../doc/twitter-connector.xml.sample twitter:getAvailableTrends}
*
* @return the {@link Location}s
* @throws TwitterException when Twitter service or network is unavailable
*/
@Processor
public ResponseList<Location> getAvailableTrends()
throws TwitterException {
return getConnectionManagement().getTwitterClient().getAvailableTrends();
}
内容来源于网络,如有侵权,请联系作者删除!