抓取带有特定标签的推文?

发布于 2024-11-07 17:25:40 字数 288 浏览 0 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稀香 2024-11-14 17:25:40

您可以使用搜索 api,例如

http://search.twitter.com/search.json?q=%23myhashtag+from:myusername

,但它只会返回过去 24 小时内的推文。

另一种方法是获取整个时间线并提取您想要的推文。

var tweets = []
$.getJSON('http://twitter.com/status/user_timeline/sustrans.json?callback=?', function(data){
  for(i in data) {
    if(data[i].text.indexOf('#hastag') > -1) {
      tweets.push(data[i]);
    }
  }
});

You can use the search api e.g.

http://search.twitter.com/search.json?q=%23myhashtag+from:myusername

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.

var tweets = []
$.getJSON('http://twitter.com/status/user_timeline/sustrans.json?callback=?', function(data){
  for(i in data) {
    if(data[i].text.indexOf('#hastag') > -1) {
      tweets.push(data[i]);
    }
  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文