我正在尝试在 PHP 中实现 imgur api,但我无法对其进行身份验证。我使用 file_get_contents 从 api 获取结果,并将标题设置为包含我的 Client-Id。
$opts = array(
'http'=>array(
'method'=>"POST",
'header'=>"Authorization: Client-ID CLIENT_ID"
)
);
$context = stream_context_create($opts);
$file = file_get_contents('https://api.imgur.com/3/image/$get', false, $context);
echo $file;
但它仍然显示“需要身份验证”并返回 401 状态。有什么想法我哪里出错了吗?