1

我将我最新的推文拉到我的主页上,但我不知道我需要添加什么来拉动头像。

有任何想法吗?

 <script src="http://twitterjs.googlecode.com/svn/trunk/src/twitter.min.js"></script>
 <script type="text/javascript">
 getTwitters('tweet', {
id: 'gezzamondo',
count: 1,
enableLinks: true,
ignoreReplies: true,
clearContents: true,
template: '"%text%" <a href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a>'
 });
4

1 回答 1

1

如果你使用

 %user_profile_image_url% 

在模板变量中,应该得到你的头像。

所以它会是

 template: '"%text%" <img src="%user_profile_image_url%" height="" width="" /><a href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a>'

更多信息见这里,

资源

于 2012-12-02T13:05:42.040 回答