2

我的网站上有一个自动推特供稿,直到最近它都运行良好,我已经弄清楚它是因为 Api 1.1 的更改,我需要进行更改,但我不知道如何修复它!这段代码:

    $(document).ready(function() {
   $.getJSON('http://search.twitter.com/search.json?rpp=75&callback=?&q=%2y' ,function         (data){
    for(var i=0;i<data.results.length;i++){
        var tweeter = data.results[i].from_user;
        var tweetText = data.results[i].text;
        var tweetText = tweetText.substring(0, 139);
        tweetText = tweetText.replace(/http:\/\/\S+/g, '<a href="$&" target="_blank">$&</a>');
        tweetText = tweetText.replace(/(@)(\w+)/g, ' $1<a href="http://twitter.com/$2" target="_blank">$2</a>');
        tweetText = tweetText.replace(/(#)(\w+)/g, ' $1<a  href="http://search.twitter.com/search?q=%23$2" target="_blank">$2</a>');
            $('#tw').append('<li class="tweet"><div class="tweetImage"><a                       href="http://twitter.com/'+tweeter+'" target="_blank"><img src="'+data.results[i].profile_image_url+'" width="48" border="0" /></a></div><div class="tweetBody">'+tweetText+'</div></li>');    
    }
   });

   function autoScroll() {
var itemHeight = $('#tw li').outerHeight();
    /* calculte how much to move the scroller */
   var moveFactor = parseInt($('#tw').css('top')) + itemHeight;
   /* animate the carousel */
   $('#tw').animate(
       {'top' : moveFactor}, 'slow', 'linear', function(){
           /* put the last item before the first item */
           $("#tw li:first").before($("#tw li:last"));
           /* reset top position */              
           $('#tw').css({'top' : '-6em'});
     });
  };
 /* make the carousel scroll automatically when the page loads */
 var moveScroll = setInterval(autoScroll, 6000);
});

效果很好,它使用 hastag jquery 提取推文,但我想要的是用户名 nnacanada 的推文,我该如何完成呢?非常感谢任何帮助!

4

2 回答 2

1

我有同样的问题,但解决方案有点复杂,因为我们必须在 api 1.1 中使用 https 而不是 http,解决方案是使用身份验证https://dev.twitter.com/docs/api/1.1/get/状态/用户时间线

于 2013-06-14T11:34:00.827 回答
0

看起来如果您使用正确的值将 &user_id 或 $screen_name 添加到您的 URL,它应该可以工作。

于 2013-06-07T13:17:49.923 回答