我正在使用下面的推特小部件。
<script src="//widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'search',
search:'#xxx',
rpp: 10,
interval: 1000,
title: 'Recent Tweets ',
width: 234,
height: 330,
theme: {
shell: {
background: 'none',
color: '#555555'
},
tweets: {
background: 'none',
color: '#666',
links: '#01972e'
}
},
features: {
scrollbar: true,
loop: false,
live: true,
hashtags: true,
timestamp: true,
avatars: true,
behavior: 'all'
}
}).render().start();
</script>
这给了我最好的结果而不是全部。如果我去我的Twitter帐户并搜索#xxx,我会在最高结果下得到三条推文,而且还有更多的推文。最高结果的三个是我在使用上面代码时得到的那个。
我试图查看记录的widget.js,但没有找到相应的选项。