I need to parse this url http://www.google.com/trends/fetchComponent?q=swine&cid=TOP_QUERIES_0_0&export=3
I have tried with:
<?php
$ch = curl_init("http://www.google.com/trends/fetchComponent?q=swine&cid=TOP_QUERIES_0_0&export=3");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$html = curl_exec($ch);
curl_close($ch);
echo $html;
?>
But I receive only
You have reached your quota limit. Please try again later.
However if i can open that page from web browser (im not logged-in) and i can change search terms etc. So from web browser it works,, but id doesn't when using PHP and CURL.