抓取带有特定标签的推文?
我使用 jquery/JS 来获取帐户的最新推文,但我想通过主题标签来过滤它们。
我的 getJson 调用是: http://twitter.com/status/user_timeline/sustrans。 json?count=2
我似乎找不到说明通过主题标签值过滤这些内容的文档...
有什么想法吗?
谢谢
Im using jquery/JS to grab the latest tweets of a account, but I want to filter them by hashtag instead.
my getJson call is: http://twitter.com/status/user_timeline/sustrans.json?count=2
I can't seem to find the documentation that says to filter these by a hastag value...
Any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用搜索 api,例如
,但它只会返回过去 24 小时内的推文。
另一种方法是获取整个时间线并提取您想要的推文。
You can use the search api e.g.
But it will only return Tweets from the past 24 hours.
The alternative is to to get the whole timeline and pull out the Tweets you want.