我正在尝试通过 Discogs API 以 JSON 格式获取发布数据,但它不起作用。我究竟做错了什么?此代码适用于其他 URL。
<?php
$opts = array('http' => array('method' => 'GET',
'header' => 'Accept-Encoding: gzip,
deflate\r\nUser-Agent: TheVinylCrate/1.0 +http://www.hazadus.net\r\n'));
$context = stream_context_create($opts);
echo file_get_contents('http://api.discogs.com/releases/4976693', false, $context);
?>