1

我正在尝试通过 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); 
?> 
4

2 回答 2

1
<?php 
echo file_get_contents(('http://api.discogs.com/releases/4976693'), false); 
?> 

这将起作用。您无需添加任何选项。

于 2014-01-29T19:36:49.563 回答
0

如果您使用 PHP 并想连接到 Discogs API,您可能想使用我写的客户端: https ://github.com/ricbra/php-discogs-api

于 2015-07-03T14:46:01.323 回答