如何设置 jTweetsAnywhere 推文过滤器
我正在使用 jTweetsAnywhere (http://thomasbillenstein.com/jTweetsAnywhere/#jta_usage) 并且需要过滤推文以排除某些带有文字的推文。我有这个,但它不起作用,并且没有如何设置它的示例。
$('#Tweets').jTweetsAnywhere({
searchParams: ['q=sliderobes'],
TweetFilter: ['kids'],
count: 3,
showTweetFeed: {
showProfileImages: true,
showUserScreenNames: false
}
})
感谢您的帮助, C
I am using jTweetsAnywhere (http://thomasbillenstein.com/jTweetsAnywhere/#jta_usage) and need to filter the tweets to exclude certain tweets with words. I have this but it isn't working and there is no examples of how to set this up.
$('#Tweets').jTweetsAnywhere({
searchParams: ['q=sliderobes'],
TweetFilter: ['kids'],
count: 3,
showTweetFeed: {
showProfileImages: true,
showUserScreenNames: false
}
})
Thanks for any help,
C
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是小写的 t
tweetFilter
,它是一个接受tweet
(直接来自 Twitter API 的 JSON tweet 对象)和插件options
的函数选项对象。例如It's lower-case t
tweetFilter
and it's a function that acceptstweet
- a JSON tweet object straight from the twitter API - andoptions
, the plugin options object. For example