有人能解释一下PHP libcurl中的CURLAUTH\u协商(PHP 5.6.4在Windows上运行libcurl v7.39.0)和cURL 7.57.0中的协商之间的区别吗?
通过命令行使用cURL 7.57.0的以下请求有效:
curl --negotiate -u MYDOMAIN\myuser:mypass http://myip:myport/mywebservice.svc
当我使用PHP 5.6.4(在Windows上运行)和libcurl v7.39.0尝试下面的代码时,远程web服务器返回401.2错误:
<?php
//Set vars
$url = "http://myip:myport/mywebservice.svc"; // asmx URL of WSDL
$un = "myuser"; // username
$password = "mypass"; // password
$domain = "MYDOMAIN\\"; // domain
//Create, Send and Output cURL Request
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_NEGOTIATE);
curl_setopt($ch, CURLOPT_USERPWD, $domain . $un.":".$password);
$response = curl_exec($ch);
echo $response;
?>
以下是PHP CURL设置:
cURL support => enabled
cURL Information => 7.39.0
Age => 3
**Features**
AsynchDNS => Yes
CharConv => No
Debug => No
GSS-Negotiate => No
IDN => Yes
IPv6 => Yes
krb4 => No
Largefile => Yes
libz => Yes
NTLM => Yes
NTLMWB => No
SPNEGO => Yes
SSL => Yes
SSPI => Yes
TLS-SRP => No
Protocols => dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, pop3, pop3s, rtsp, scp, sftp, smtp, smtps, telnet, tftp
Host => i386-pc-win32
SSL Version OpenSSL/1.0.1i
ZLib Version => 1.2.7.3
libSSH Version => libssh2/1.4.3
非常感谢您的任何见解!谢谢~丹