twitter4j.Twitter.getAvailableTrends()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(97)

本文整理了Java中twitter4j.Twitter.getAvailableTrends()方法的一些代码示例,展示了Twitter.getAvailableTrends()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Twitter.getAvailableTrends()方法的具体详情如下:
包路径:twitter4j.Twitter
类名称:Twitter
方法名:getAvailableTrends

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 &quot;locations&quot; 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();
}

相关文章