2

我以前使用 JQuery 使用过 twitter JSON。但它现在似乎不起作用。推特服务器是关闭了还是我做错了什么?

这是我的代码:

    //Twitter

    $(function() {
        var twitterBaseURL = 'http://twitter.com/status/user_timeline/archies4000.json?count=1&callback=?';
        var html = '';
        var num_of_tweets=0;
        $.getJSON(twitterBaseURL, function(json) {
            $.each(json, function(i, item) {
                num_of_tweets=i+1;
                var text = $.toLink(item.text);
                var profileImageURL = item.user.profile_image_url;
                var time_arr= item.created_at.split(" ");
                var time=time_arr[1]+" "+time_arr[2];
                html += '<p>' + text + ' on '+ time + '</p>';
            });
            $('#twt-desc').html(html);
            $('#twt-pic').append('<img src="'+profileImageURL+'" alt="VPULTS" />');
        });
    });

我什至尝试在浏览器中直接输入 URL (http://twitter.com/status/user_timeline/archies4000.json?count=1&callback=?) 以在浏览器本身中获取 JSON。它显示:

({"errors":[{"message":"Sorry, that page does not exist","code":34}]});

谢谢你。

4

1 回答 1

1

我得到了答案......Twitter最近做了一些家务:

https://dev.twitter.com/discussions/10803

URL 需要更改为:

https://api.twitter.com/1/statuses/user_timeline/username.json?count=1&callback= ?

感谢@Lloyd 为我指明了正确的方向

于 2012-11-14T17:11:41.320 回答