我正在使用 Twitter 流 API。它对单个单词非常有效,但似乎无法通过精确的二元组(两个单词串)过滤。
我正在通过搜索常用词来测试这一点,这些词通常组合在一起:
e.g. "feel good"
这是 URL:(需要 OAuth 登录):
https://stream.twitter.com/1.1/statuses/filter.json?track=keywords_go_here
不起作用的事情:
track=feel%20good ==> still produces: "text":"Feels so good outside!..."
track=%27feel%20good%27 ==> produces nothing
track=feel%20good, ==> still produces "good that my friend has an ED too because I can feel..."
关于让它发挥作用的任何想法?
编辑:有人在 2010 年初回答了这个问题:Twitter Streaming API - tracking exact multiple keywords in exact order,但是这个问题有什么更新吗?