I have installed unirest though composer, but it does not return anything. Is there anything wrong with this simple code?
require_once 'vendor/autoload.php';
$response = Unirest\Request::get("https://contextualwebsearch-websearch-v1.p.mashape.com/api/Search/ImageSearchAPI?autoCorrect=true&count=50&q=Donald+Trump",
array(
"X-Mashape-Key" => "my key",
"Accept" => "application/json"
)
);
echo $response->body;
?>
(i have the key)