当我们使用curl发送https请求时,如下命令就会报错:
curl "https://www.baidu.com"
错误代码:
curl: (60) SSL certificate problem: unable to get local issuer certificate
More details here: https://curl.haxx.se/docs/sslcerts.html
好多网站上给的解决办法是下载CA证书,但是使用C++代码调用libcurl发送https请求,只需要在设置一下这个就可以关闭ssl验证,从而能够发送https请求
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false);
因此使用curl命令行肯定也可以通过设置跳过ssl验证,我们打开命令行错误提示的那个网页:https://curl.haxx.se/docs/sslcerts.html
从这里可以找到在命令行中使用curl发送https请求的解决办法,带上这个参数:-k --insecure
curl -k --insecure "https://www.baidu.com"
可以发现能够成功访问http请求了: