我在我的网站上有一个自动的Twitter提要,直到最近它一直运行良好,我已经弄清楚它是因为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的推文,我该如何才能完成这个?任何帮助非常感谢!
答案 0 :(得分:1)
我遇到了同样的问题,但解决方案有点复杂,因为我们必须在api 1.1中使用https而不是http,解决方案是使用身份验证https://dev.twitter.com/docs/api/1.1/get/statuses/user_timeline
答案 1 :(得分:0)
如果您使用正确的值将&amp; user_id或$ screen_name添加到您的网址,它应该可以正常工作。