1

我正在使用一个 API,它为我提供了一个用于连接的令牌。它给出了这些说明。

然后在所有后续调用中将这个令牌发送到标头变量 Auth Digest 中的服务器。

我不确定这意味着什么。我尝试了几种方法并阅读了几个堆栈溢出问题。这是我尝试过的。有关详细信息,请参阅包含的代码注释。

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FAILONERROR, true);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER,true);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
curl_setopt($ch, CURLOPT_VERBOSE, true);

// I have tried setting both of these
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);

curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);

// In combination of the above separately, I have tried each of these individually
curl_setopt($ch, CURLOPT_USERPWD, $username . ":" . $token);

curl_setopt($ch, CURLOPT_HTTPHEADER, array('Auth Digest: ' . $token));

curl_setopt($ch, CURLOPT_POST, true);
$post_data = array('Auth Digest' => $token);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post_data));

curl_setopt($ch, CURLOPT_USERPWD, $token); 

// Then I execute and close, either giving me a failed response and a response that says token is not valid
$response = curl_exec($ch);
$header_sent = curl_getinfo($ch, CURLINFO_HEADER_OUT);
if (!$response) {
    echo $action . ' curl request failed';
    return false;
}
curl_close($ch);
$response_json = json_decode($response);
var_dump($response_json);

以下是一些相关的 stackoverflow 问题,我尝试将它们应用于我的问题但没有成功。

在 PHP 中使用摘要身份验证的 curl 请求以下载 Bitbucket 私人存储库

使用 PHP POST 到 Web 服务的摘要式身份验证的客户端部分

如何使用带有 PHP curl 的 HTTP 基本身份验证发出请求?

我需要知道他们可能期望的原始 http 标头是什么,或者我如何使用 php curl 来生成他们可能期望的标头。

4

1 回答 1

1

摘要授权标头通常如下所示:

Authorization: Digest _data_here_

因此,在您的情况下,请尝试:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
//... existing options here
$headers = array(
    'Authorization: Digest ' . $token,
);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$response = curl_exec($ch);

如果您使用CURLOPT_HTTPHEADER,则仅指定要发送的其他标头,并且不需要您在此处添加所有标头。

如果您发送的其他标头都有明确的选项,请使用这些选项并将一个授权标头传递给CURLOPT_HTTPHEADER.

于 2016-07-20T19:55:35.963 回答