当前位置:   article > 正文

curl使用命令行发送https请求_curl htts

curl htts

当我们使用curl发送https请求时,如下命令就会报错:

curl "https://www.baidu.com"
  • 1

在这里插入图片描述
错误代码:

curl: (60) SSL certificate problem: unable to get local issuer certificate
More details here: https://curl.haxx.se/docs/sslcerts.html

  • 1
  • 2
  • 3

好多网站上给的解决办法是下载CA证书,但是使用C++代码调用libcurl发送https请求,只需要在设置一下这个就可以关闭ssl验证,从而能够发送https请求

curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false);
  • 1

因此使用curl命令行肯定也可以通过设置跳过ssl验证,我们打开命令行错误提示的那个网页:https://curl.haxx.se/docs/sslcerts.html

在这里插入图片描述
从这里可以找到在命令行中使用curl发送https请求的解决办法,带上这个参数:-k --insecure

curl -k --insecure "https://www.baidu.com"
  • 1

可以发现能够成功访问http请求了:

在这里插入图片描述

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号