我正在使用Twitter流API。它適用於單個單詞,但似乎無法通過精確的雙字符串(兩個字符串)進行過濾。在twitter流式API跟蹤關鍵字中爲精確的bigram匹配編碼空間
我通過搜索常用詞,在組合通常是測試這個:
e.g. "feel good"
這是網址:(需要登錄的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,但是有沒有在這個問題上的任何更新?
只要確保您正確地轉義引號 – cubbuk