Accessing Discogs API from PHP



我正在尝试通过Discogs API以JSON格式获取发布数据,但它行不通。我究竟做错了什么?此代码与其他URL合作。

<?php 
$opts = array('http' => array('method' => 'GET',
'header' => 'Accept-Encoding: gzip,
deflaternUser-Agent: TheVinylCrate/1.0 +http://www.hazadus.netrn')); 
$context = stream_context_create($opts); 
echo file_get_contents('http://api.discogs.com/releases/4976693', false, $context); 
?> 
<?php 
echo file_get_contents(('http://api.discogs.com/releases/4976693'), false); 
?> 

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

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

相关内容

  • 没有找到相关文章

最新更新