5

我正在为我的最终项目建立一个网站,用于在 Twitter 上查找和显示当前最热门的主题。有谁知道如何从上周或一天的大量推文中提取主题?我也想知道如何在http://tweet3d.com/上显示标签云之类的主题,并显示每个主题的趋势,例如http://trendistic.indextank.com/

我真的需要你的帮助,因为这个最后的项目会在本月底到期。我的伙伴让我使用 Flash Builder,我也在学习使用它。多谢你们。


附加信息(11/20/2011):在我在谷歌上搜索后,我来到了这篇论文:使用主题模型比较 Twitter 和传统媒体,你可以通过这个链接访问它:论文,但我无法理解模型,因为我缺乏相关背景。

4

2 回答 2

2

我整理了一个很好的 JS fiddle,它可以回答你在处理 Twitter API 时的所有问题。该网络应用程序抓取热门地区,并允许您深入了解热门话题,然后查看其中的推文。

我还包括了一个标准的 Twitter 搜索提交框,所以以一种奇怪的方式,这是一个准系统 Tweetdeck 客户端供您检查。此外,为了推动新的 Jquery 库的适应,我使用了 1.91,它使用了新的 live.bind 点击事件语法。

享受

http://jsfiddle.net/jdrefahl/5M3Gn/

function searchTwitter(query) {
$.ajax({
    url: 'http://search.twitter.com/search.json?' + jQuery.param(query),
    dataType: 'jsonp',
    success: function (data) {
        var tweets = $('#tweets');
        tweets.html('');
        for (res in data['results']) {
            tweets.append('<div>' + data['results'][res]['from_user'] + ' wrote: <p>' + data['results'][res]['text'] + '</p></div><br />');
        }
    }
});
}

$(document).ready(function () {

function getTrendsByID(id) {
    $.ajax({
        url: 'http://api.twitter.com/1/trends/' + id + '.json',
        dataType: 'jsonp',
        success: function (data) {
            $.each(data[0].trends, function (i) {
            });
        }
    });
};

function getLocales() {
    $.ajax({
        url: 'https://api.twitter.com/1/trends/available.json',
        dataType: 'jsonp',
        success: function (data) {
            var locales = $('ul#locales');
            locales.html('');
            $.each(data, function (i) {
                localeID[i] = data[i].woeid;
                $('ul#locales').append('<li>' + data[i].name + '</li>');
            });
        }
    });

};

function getTrends(id) {
    $.ajax({
        url: 'https://api.twitter.com/1/trends/' + id + '.json',
        dataType: 'jsonp',
        success: function (data) {
            var trends = $('ul#currentTrends');
            trends.html('');
            $.each(data[0].trends, function (i) {
                $('ul#currentTrends').append('<li>' + data[0].trends[i].name + '</li>');
            });
        }
    });
};

// Event Handlers
$(document).on("click", "#locales li", function () {
    var $this = $(this);
    var localesHdr = $('#currentTrendsCont h3');
    var tweets = $('#tweets');
    var trendsHdr = $('#tweetsCont h3');
    trendsHdr.html('');
    tweets.html('');
    localesHdr.html('');
    $('#currentTrendsCont h3').html($this.text());
    getTrends(localeID[$this.index()]);
});

$(document).on("click", "#currentTrends li", function () {
    var $this = $(this);
    var trendsHdr = $('#tweetsCont h3');
    trendsHdr.html('');
    $('#tweetsCont h3').html($this.text());
    var params = {
        q: $this.text(),
        rpp: 10
    };
    searchTwitter(params);
});

$('#submit').click(function () {
    var trendsHdr = $('#tweetsCont h3');
    var trends = $('#currentTrends');
    var local = $('#currentTrendsCont h3');
    local.html('');
    trendsHdr.html('');
    trends.html('');
    $('#tweetsCont h3').html('search query: '+$('#query').val());
    var params = {
        q: $('#query').val(),
        rpp: 10
    };
    searchTwitter(params);
});

// Globals
var localeID = new Array();

// Init!
getLocales();

});
于 2013-03-06T08:10:43.870 回答
2

我对 Twitter API 不太熟悉,但也许这会有所帮助: https ://dev.twitter.com/docs/api/1/get/trends/current

于 2011-11-20T18:58:35.327 回答