I've a small application retrieving stock data from Yahoo! working fine in my local server. When I uploaded it to a remote server it stopped returning data and showing a security error in FF: "This web site does not supply ownership information."
Then I realized I must apply for an application ID wich I did but still the problem remains:
$appid = urlencode('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx--'); // My App ID
...
$cHandle = curl_init();
curl_setopt($cHandle, CURLOPT_URL, 'http://download.finance.yahoo.com/d/quotes.csv?appid='.$appid.'&s='.$symbol.'&f='.$properties.'&e=.csv');
curl_setopt($cHandle, CURLOPT_RETURNTRANSFER, true);
$dataStr = curl_exec($cHandle);
curl_close($cHandle);
echo json_encode($dataStr);
Any idea what's wrong in my code? Thanks in advance