从itunes api获得卷曲

时间:2017-01-01 04:42:57

标签: php api curl itunes

首先关闭所有新年快乐。 所以,我的问题是:如何从itunes api获得cURL? 这是我使用file_get_contents的旧示例,但它返回403禁止。 Down是我的旧代码

$data = file_get_contents('https://itunes.apple.com/search?term='.$iartist.'&limit=1&media=music&entity=song');
$response = json_decode($data); 
    if ($response->results==NULL){
    echo '';    
    }else{
    foreach ($response->results as $result)
$result->artworkUrl100 = preg_replace('/100x100bb.jpg/ms', "450x450bb.jpg", $result->artworkUrl100);
    {}

所以,我想用cURL

更改此代码

0 个答案:

没有答案