diff -r 2251fb41dbc7 -r 1e110b03ae96 web/search_tweets.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/search_tweets.php Sun Apr 21 21:54:24 2013 +0200 @@ -0,0 +1,49 @@ +getHttpClient($configuration); + $client->setUri("https://api.twitter.com/1.1/$endpoint.json"); + $client->setMethod(Zend_Http_Client::GET); + $client->setParameterGet($_GET); + $response = $client->request(); + + echo $response->getBody(); + +} else { + /** + * Mistaken request? Some malfeasant trying something? + */ + exit('Invalid tweet request. Oops. Sorry.'); +} +?> \ No newline at end of file