使用Twitter4j每日趋势?

时间:2012-05-03 12:24:38

标签: java twitter

我一直致力于一个小程序,我想在热门Twitter主题中阅读并将它们存储在数据库中。目前我使用的是twitter4j getDailyTrends()方法,但结果却很奇怪。

我目前的代码是:

        Twitter twitter = new TwitterFactory().getInstance();
        ResponseList<Trends> dailyTrends;

        dailyTrends = twitter.getDailyTrends();

        System.out.println();

        // Print the trends.
        for (Trends trends : dailyTrends) {
                    System.out.println("As of : " + trends.getAsOf());
                      for (Trend trend : trends.getTrends()) {
                            System.out.println(" " + trend.getName());
                       }
        }

但是,当程序运行时,它会显示相同的趋势列表24次。我尝试在不同的日子运行该程序,但无论我在哪一天运行程序,列表总是相同的。

我也尝试将getDailyTrends()方法传递给当前日期并获得相同的结果。

感谢任何帮助,这让我发疯。 :)

编辑:我不断得到的结果集显示了2012年4月25日的推特趋势。无论我何时运行程序,或者我给它的日期 - 我都得到了相同的结果。

EDIT2:好的,所以这一直困扰着我,我最终找到了twitter4j自己提供的示例代码来阅读趋势。我运行他们的代码而不是我的代码,我遇到了同样的问题。趋势是几周之久,永远不会改变。有没有人真的设法让这个方法以前工作?

3 个答案:

答案 0 :(得分:13)

getPlaceTrends(int woeid)

如果有可用的趋势信息,则返回特定 WOEID 的前10个趋势主题。

woeid - Yahoo! Where On Earth ID返回趋势信息的位置。使用1作为 WOEID 可以获得全局信息。

您可以使用以下代码获取不同位置的WOEID

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() + ")");
}

然后,您可以使用下面的WOEID获取特定位置的当前趋势

Trends trends = twitter.getPlaceTrends(2295414);
for (int i = 0; i < trends.getTrends().length; i++) {
    System.out.println(trends.getTrends()[i].getName());
}

答案 1 :(得分:4)

我使用twitter4j,这是我的课程,从你获得的位置获取趋势主题,在这个例子中是“西班牙”

import twitter4j.Location;
import twitter4j.ResponseList;
import twitter4j.Trends;
import twitter4j.Twitter;
import twitter4j.TwitterException;

public final class GetTrendingTopics {

    public static void main(String[] args) {

    try {

       ConfigurationBuilder cb = new ConfigurationBuilder();
cb.setDebugEnabled(true).setOAuthConsumerKey("yourConsumerKey").setOAuthConsumerSecret("yourConsumerSecret").setOAuthAccessToken("yourOauthToken").setOAuthAccessTokenSecret("yourOauthTokenSecret");

        TwitterFactory tf = new TwitterFactory(cb.build());
        Twitter twitter = tf.getInstance();

        ResponseList<Location> locations;
        locations = twitter.getAvailableTrends();

        Integer idTrendLocation = getTrendLocationId("spain");

        if (idTrendLocation == null) {
        System.out.println("Trend Location Not Found");
        System.exit(0);
        }

        Trends trends = twitter.getPlaceTrends(idTrendLocation);
        for (int i = 0; i < trends.getTrends().length; i++) {
        System.out.println(trends.getTrends()[i].getName());
        }

        System.exit(0);

    } catch (TwitterException te) {
        te.printStackTrace();
        System.out.println("Failed to get trends: " + te.getMessage());
        System.exit(-1);
    }
    }

    private static Integer getTrendLocationId(String locationName) {

    int idTrendLocation = 0;

    try {

        ConfigurationBuilder cb = new ConfigurationBuilder();
cb.setDebugEnabled(true).setOAuthConsumerKey("yourConsumerKey").setOAuthConsumerSecret("yourConsumerSecret").setOAuthAccessToken("yourOauthToken").setOAuthAccessTokenSecret("yourOauthTokenSecret");

        TwitterFactory tf = new TwitterFactory(cb.build());
        Twitter twitter = tf.getInstance();

        ResponseList<Location> locations;
        locations = twitter.getAvailableTrends();

        for (Location location : locations) {
        if (location.getName().toLowerCase().equals(locationName.toLowerCase())) {
            idTrendLocation = location.getWoeid();
            break;
        }
        }

        if (idTrendLocation > 0) {
        return idTrendLocation;
        }

        return null;

    } catch (TwitterException te) {
        te.printStackTrace();
        System.out.println("Failed to get trends: " + te.getMessage());
        return null;
    }

    }
}

答案 2 :(得分:1)

我依旧记得,但你可以尝试以下

for (Trends trends : dailyTrends) {
                    System.out.println("As of : " + trends.getAsOf());

                     System.out.println(" " + trends.getTrendAt());

        }