I'm trying to find a way to use the main Twitter API to search tweets using PHP. The latest 1.1 documentation says this should be possible. I DO NOT want to use the http://search.twitter.com API.
I've set up a Twitter application and use the consumer, secret etc. keys to connect to it via Abraham's twitteroauth (https://github.com/abraham/). I can pull out my own timeline and my own bio info from Twitter using this method, but when I try to use the search it fails saying "Query parameters are missing".
I'm using the following code in a slightly modified test.php from that Git repository:
$parameters = array('q' => 'qwerty');
twitteroauth_row('search/tweets', $connection->get('search/tweets'), $connection->http_code,$parameters);
/* users/search */
$parameters = array('q' => 'brenmurrell');
twitteroauth_row('users/search', $connection->get('users/search', $parameters), $connection->http_code, $parameters);
/* statuses/public_timeline */
twitteroauth_row('statuses/user_timeline', $connection->get('statuses/user_timeline'), $connection->http_code,'q=twitpic');
The last two calls work as expected, the first does not. I get a 400 HTTP Error, with the specific API error code of 25 (Query paramaters are missing).
Am I missing something? Can anyone help with where this might be going wrong, or if this is genuinely broken functionality?