当前位置: 首页 > article >正文

curl命令忽略不受信任的https安全限制

用curl命令没有得到返回,还报了个提示:

curl: (60) Issuer certificate is invalid.
More details here: http://curl.haxx.se/docs/sslcerts.html

curl performs SSL certificate verification by default, using a “bundle”
of Certificate Authority (CA) public keys (CA certs). If the default
bundle file isn’t adequate, you can specify an alternate file
using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
the bundle, the certificate verification probably failed due to a
problem with the certificate (it might be expired, or the name might
not match the domain name in the URL).
If you’d like to turn off curl’s verification of the certificate, use
the -k (or --insecure) option.

关键词:

use the -k

原本的请求:

curl -X POST
http://127.0.0.1:8080/java/getSomeData
-H ‘Content-Type: application/json’
-H ‘Postman-Token: 00c73471-ab45-41be-8eed-3a40214893f7’
-H ‘cache-control: no-cache’
-d ‘{
“userId”: “7404702”,
“beginTime”: “2019-11-13”,
“endTime”: “2019-11-13”
}’

加-k即可解决

curl -k -X POST
http://127.0.0.1:8080/java/getSomeData
-H ‘Content-Type: application/json’
-H ‘Postman-Token: 00c73471-ab45-41be-8eed-3a40214893f7’
-H ‘cache-control: no-cache’
-d ‘{
“userId”: “7404702”,
“beginTime”: “2019-11-13”,
“endTime”: “2019-11-13”
}’


http://www.kler.cn/a/229894.html

相关文章:

  • 【05】Selenium+Python 两种文件上传方式(AutoIt)
  • Spring Boot【二】
  • 【机器学习算法】Adaboost原理及实现
  • notepad++文件github下载
  • 前端JavaScript(一)---基本介绍
  • ELK配置索引清理策略
  • 构建高效可靠的数据血缘技术架构-文字解说
  • Vue3 中的各种ref
  • 30道前端基础知识快问快答
  • Redis——高级主题
  • Objective-C中对象与对象之间的关系
  • 基于DFS、BFS解决迷宫问题
  • 【Java数据结构】单向 不带头 非循环 链表实现
  • Langchain ZERO_SHOT_REACT_DESCRIPTION的使用
  • springboot war包部署 和jar包部署
  • Linux中共享内存(mmap函数的使用)
  • 【技术预研】StarRocks官方文档浅析(4)
  • Linux命令:traceroute命令
  • re:从0开始的CSS学习之路 3. CSS三大特性
  • 计算机网络自顶向下Wireshark labs-HTTP
  • AD高速板常见问题和过流自锁
  • c语言游戏实战(3):三子棋
  • 私有化部署一个吃豆人小游戏
  • 深度学习的进展:人工智能时代的里程碑
  • 算法训练营day23(补),回溯3
  • C#在既有数组中插入另一个数组:Array.Copy方法 vs 自定义插入方法