Hi, I'm trying to use Twitter Search to find Retweets by performing a phrase search "r...@screen_name". This can be performed by using the following:
http://search.twitter.com/search.atom?q=&phrase=...@klout&lang=all&rpp=10&page=1 However, urlencode the "phrase" parameter and the results are different ("rt" and "@klout" anywhere in the tweet, instead of "rt @klout"): http://search.twitter.com/search.atom?q=&phrase=rt%2B%40klout&lang=all&rpp=10&page=1 Since we use OAuth, we are required to urlencode our params: http://search.twitter.com/search.atom?oauth_version=1.0&oauth_nonce=XXXX&oauth_timestamp=1241893707&oauth_consumer_key=XXXXX&q=&phrase=rt%2B%40klout&lang=all&rpp=100&page=1&since_id=1719199885&oauth_token=XXXX&oauth_signature_method=HMAC-SHA1&oauth_signature=XXXX What am I doing wrong here?