我正在尝试消除Twitter小部件中的回复和转发。到目前为止,以下代码无效:
从widget.js的第1967行开始:
var F = /twitter\.com(\:\d{2,4})?\/intent\/(\w+)/,
A = {
tweet: true,
retweet: false,
reply:false,
favorite: true
},
这个代码在html页面的主体中同样不起作用:
<script type="text/javascript">
new TWTR.Widget({
version: 2,
type: 'search',
search: 'blahblahblah', // This shows all tweets with the hashtag #blahblahblah.
interval: 3000,
title: '',
subject: '',
width: 'auto',
height: 544,
theme: {
shell: {
background: '#cccccc',
color: '#ffffff'
},
tweets: {
background: '#ffffff',
color: '#5e6a71',
links: '#aa0828',
reply:false,
retweet:false
}
},
features: {
scrollbar: false,
loop: true,
live: true,
hashtags: true,
timestamp: true,
avatars: true,
behavior: 'default'
}
}).render().start();
</script>
非常感谢任何帮助。
答案 0 :(得分:0)
我明白了。在搜索小部件中,只需设置搜索参数:
搜索:'来自:@blahblahblah',
这会将搜索查询限制为仅限特定用户的推文。我希望这可以帮助任何遇到这个问题的人。
答案 1 :(得分:0)
消除转推尝试在搜索字符串中添加“-RT”。
答案 2 :(得分:0)
只需将搜索查询设置为:
即可“来自:@blahblahblah -RT”
它将消除其他回复,转发和提及!
我希望它能帮到你