谷歌金融getprices URL可通过浏览器运行,但自2018年8月3日起不起作用

时间:2018-08-05 02:14:15

标签: php google-finance google-finance-api

google finance getprices网址可通过浏览器使用,但自2018年8月3日起不可用 任何解决方案,为什么

我也在PHP中以编程方式进行了检查

<?php
$arrContextOptions=array(
            "ssl"=>array(
                "verify_peer"=>false,
                "verify_peer_name"=>false,
            ),
        );  

$URL = 'https://finance.google.com/finance/getprices?f=d,c,v,k,o,h,l&p=60&x=NSE&q=ITC&i=60;
$filecontent = file_get_contents( $URL , false, stream_context_create($arrContextOptions));


print_r($filecontent);
?>

通常,这会以文本格式为我提供TimeStamp,OPEN,HIGH,LOW,Close,Volume数据,但这现在不起作用。

0 个答案:

没有答案