从今天早上开始,我在使用Curl的一个脚本上遇到了问题。错误是“与example.com:443相关的未知SSL协议错误”。
我试图强制使用SSL VERSION 3,但结果是一样的。
curl_setopt($curl, CURLOPT_SSLVERSION,3);
这是我的代码:
$url = "https://example.com/abc/abc";
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE );
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($curl, CURLOPT_ENCODING, 'UTF-8');
curl_setopt($curl, CURLOPT_SSLVERSION,3);
curl_setopt($curl, CURLOPT_POST, TRUE);
curl_setopt($curl, CURLOPT_POSTFIELDS, $json2send);
curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));
$part4 = curl_exec($curl);
我尝试了一个命令,它是一样的:
curl -I -v --sslv3 https://example.com/abc/abc
* About to connect() to example.com port 443 (#0)
* Trying X.X.X.X...
* connected
* Connected to example.com (X.X.X.X) port 443 (#0)
* successfully set certificate verify locations:
* CAfile: none
CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
* Unknown SSL protocol error in connection to example.com:443
* Closing connection #0
curl: (35) Unknown SSL protocol error in connection to example.com:443
我现在不知道该怎么做......或者如何以更好的方式跟踪这个错误
卷曲版
curl 7.26.0 (x86_64-pc-linux-gnu) libcurl/7.26.0 OpenSSL/1.0.1e zlib/1.2.7 libidn/1.25 libssh2/1.4.2 librtmp/2.3
Protocols: dict file ftp ftps gopher http https imap imaps ldap pop3 pop3s rtmp rtsp scp sftp smtp smtps telnet tftp
Features: Debug GSS-Negotiate IDN IPv6 Largefile NTLM NTLM_WB SSL libz TLS-SRP
PHP版
PHP 5.4.36-0+deb7u3 (cli) (built: Jan 9 2015 08:07:06)
OpenSSL版本
OpenSSL 1.0.1e 11 Feb 2013
我尝试使用Curl 7.36& 7.37并有同样的问题。我找不到解决方案......
谢谢
答案 0 :(得分:1)
也许您尝试连接的服务器不支持SSL(很可能是这种情况)
您是否尝试过使用TLS 1 / 1.1 / 1.2?
另请发布
的输出
openssl version