Twitter Streaming API - 组合两个谓词
我希望我的 Twitter Streaming API 能够捕获美国境内使用某些 #HashTag 提到的所有推文。但是,如果我使用指定 location= &track= 的 filter.json 服务,那么我会得到集体 OR。我相信我在 Stack Overflow 上的某个地方读到它是设计使然的,但我仍然没有那个参考资料。
是否可以使用 AND 将它们组合起来?
I'd like my Twitter Streaming API to catch all tweets mentioned using some #HashTag within the USA. However, if I use the filter.json service specifying location= &track=, then I get the collective OR. I believe I read somewhere on Stack Overflow that it's by design, but I don't still have that reference.
Is it possible to combine those using AND?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能让 API 仅传送符合两个条件 (AND) 的推文,但您可以收集任一条件 (OR) 的推文,然后仅使用或保存符合两个条件的推文。
You can't have the API deliver only tweets that match both conditions (AND), but you can collect tweets for either condition (OR), and then only use or save the tweets that match both conditions.