Twitter Search API Question
- by supermogx
I'm using the twitter search API to get twitter posts based on some keywords, using AND and OR keyword. It works OK, but I seem to get problems using hashtags...
For example :
Not returning any results :
http://search.twitter.com/search.json?q="%23ipad+AND+%23ipod"+OR+"%23joke+AND+%23funny"&rpp=100&callback=?
Returning results :
http://search.twitter.com/search.json?q="ipad+AND+ipod"+OR+"joke+AND+funny"&rpp=100&callback=?
But there's results with #ipod AND #ipad because when I search only for #ipod, I can see a lot of posts with both hashtags.
Example : http://search.twitter.com/search.json?q=%23ipad&rpp=100&callback=?
P.S. %23 = #
Any idea?