解码Yahoo Finance JSON代码

时间:2018-01-28 21:11:01

标签: php arrays json decode

所以我发现这个URL来获取数据,但我似乎无法访问我需要的JSON。到目前为止,这是我的代码。

<?php

$url = "https://query1.finance.yahoo.com/v7/finance/options/AAPL";

$result = file_get_contents($url);//allow_url_fopen  turned on in php. ini file


// decode the json
$resp = json_decode($result, true);


print_r($resp['optionChain']['result']['expirationDates']);


?>

我拿了网址并使用网站整齐地格式化代码。 https://jsonformatter.curiousconcept.com/

但仍然没有运气。有什么建议?

P.S我过去曾使用过JSON格式的Google API代码和彩票API代码,但我似乎无法得到这个lol很奇怪嗯

0 个答案:

没有答案