我可以毫无问题地执行以下操作:
curl -u "username:password" http://www.example.com/exportfile.xml
但如果我尝试对我们网站的 https 版本使用相同的命令,它会失败
curl -u "username:password" https://www.example.com/exportfile.xml
错误信息如下:
About to connect() to www.example.com port 443 (#0)
Trying "some ip"... connected
Connected to www.example.com (some ip) port 443 (#0)
Initializing NSS with certpath: sql:/etc/pki/nssdb
CAfile: /etc/pki/tls/certs/ca-bundle.crt
CApath: none
NSS error -5938
Closing connection #0
SSL connect error
curl: (35) SSL connect error
感谢所有帮助
答案1
尝试使用该-k/--insecure
参数。
来自手册页:
(SSL)此选项明确允许 curl 执行“不安全”的 SSL 连接和传输。所有 SSL 连接都尝试使用默认安装的 CA 证书包来确保安全。除非
-k, --insecure
使用,否则所有被视为“不安全”的连接都会失败。
$ curl -sku "username:password" "https://www.example.com/exportfile.xml"
我总是喜欢使用该-s/--silent
参数,除非我正在下载某些内容并想查看统计数据。
另请注意,使用该-s
参数不会阻止使用该-v
参数时的详细输出。