diff -r 556f5c8e2883 -r 9de4ed65f00c web/search_tweets.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/search_tweets.php Mon Apr 15 12:05:39 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