首先关闭所有新年快乐。
所以,我的问题是:如何从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
更改此代码