我正在使用带有jQuery的Twitter API在我的网站上显示Twitter流。我想显示个人资料图片,推文文字和时间。我有一切工作,除了图像。这是我的剧本:
jQuery.getJSON('https://api.twitter.com/1/statuses/user_timeline/twitterapi.json?count=3&include_entities=true&include_rts=1&callback=?', function(data){
jQuery.each(data, function(index, item){
jQuery('.twitter').append('<div class="tweet"><p>' + item.text.linkify() + '</p><p><strong>' + relative_time(item.created_at) + '</strong></p></div>');
});
});
我尝试添加item.profile_image_url但没有显示任何内容。
答案 0 :(得分:0)
用户变量
中的profile_image_url变量item.user.profile_image_url