如何获取有关已发送的 PHP curl 请求的信息
2022-08-30 09:05:33
我正在尝试调试对Web服务“getToken”端点的curl请求。
我不是100%确信URL和身份验证信息被正确写入卷曲句柄。
我正在尝试用于捕获发送的请求,但它没有给我太多信息。有没有办法更深入地诊断实际的 curl 请求的外观?curl_getinfo($ch, CURLINFO_HEADER_OUT);
代码如下:
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_HEADER, 1); // just getting header to see if we got an auth token
curl_setopt($ch, CURLOPT_FILE, $fh);
curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLINFO_HEADER_OUT, 1); // capture the header info
curl_setopt($ch, CURLOPT_VERBOSE, 1); // turn verbose on
// execute the curl request
$rh = fopen("request.txt", "w"); // open request file handle
$verbose = fopen('php://temp', 'rw+');
curl_setopt($ch, CURLOPT_STDERR, $verbose);
curl_exec($ch); // execute request
$sent_request = curl_getinfo($ch, CURLINFO_HEADER_OUT);
fwrite($rh, $sent_request); // save the request info
fclose($rh);
!rewind($verbose);
$verboseLog = stream_get_contents($verbose);
echo "Verbose information:\n<pre>", htmlspecialchars($verboseLog), "</pre>\n";
到目前为止,这一切都有效,但每次都会返回401 - API管理员向我保证我拥有的用户名/通行证是正确的。
我想知道我是否以某种方式弄错了URL值,或者没有发送正确的用户名/通行证,但此信息未打印在保存的请求数据中:
HEAD /export/auth HTTP/1.1
Authorization: Basic Y2FpcmRzdW5mYTpENWlAaVM4cw==
Host: webservices.mycompany.com
Accept: */*
您可以看到没有记录用户名/通行证(我假设是为了安全起见)。我认为端点URL是值加上值的开头,所以?host
HEAD
webservices.mycompany.com/export/auth
“详细信息”语句不打印任何内容。不知道为什么在这一点上!
感谢您的帮助。
编辑:从Php添加了详细模式 - 调试卷曲感谢评论者immuratin