我使用Tweetstream来抓取对我有用的Twitter内容,使用下面的开启器根据推文内容进行过滤。它在99%的时间里工作得非常好,但有时我想在Twitter上搜索&符号(&),这就是当一切都出错时。
此过滤器应该抓取" word1"或" word2& word3"
的任何实例我开始尝试:
@client.track("word1", "word2&word3") do |status|
my code in here
end
然后尝试了
@client.track("word1", "word2&word3") do |status|
my code in here
end
甚至尝试过
@client.track("word1", "word2%26amp%3bword3") do |status|
my code in here
end
@client.track("word1", "%22word2%26amp%3bword3%22") do |status|
my code in here
end
我也注意到在Twitter网页上搜索&符号非常困难 - 搜索栏似乎忽略了它。
有人可以分享如何使用Tweetstream(或任何其他Ruby gem / package)有效地搜索&符号吗?
谢谢!