curl的输出为空

时间:2019-03-03 13:57:06

标签: php json curl

您好,我以前从未在php中使用过curls,我正尝试获取在命令行中使用它时也会得到的curl输出。

这是我尝试过的

$url = 'curl -X "GET" "https://api.spotify.com/v1/me/top/artists" -H "Accept: application/json" -H "Content-Type: application/json" -H "Authorization: MY KEY HERE"';

$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL,$url);
$result=curl_exec($ch);
curl_close($ch);

var_dump(json_decode($result, true));

$result = file_get_contents($url);

var_dump(json_decode($result, true));

那两个var_dumps都给我输出NULL

我知道我的网址不正确,但是我不确定是否要更改。

0 个答案:

没有答案