运行下面的代码后,我得到一个空页面。我想从出价和询价中得到价格,但我无法获得任何数据。
<?php
ini_set('display_errors', '1');
error_reporting(E_ALL);
$url="https://api.gdax.com/products/BTC-EUR/book";
$json = @file_get_contents($url);
if($json){
$data = @json_decode($json, TRUE);
print_r($data);
}
?>