【发布时间】:2012-09-17 16:33:36
【问题描述】:
我正在使用 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,但是这个问题有什么更新吗?
【问题讨论】:
标签: twitter url-encoding twitter-streaming-api