如何忽略 Newman 中的 SSL 证书错误
Posted
技术标签:
【中文标题】如何忽略 Newman 中的 SSL 证书错误【英文标题】:How can I ignore SSL certificate error in Newman 【发布时间】:2019-09-05 05:31:33 【问题描述】:我在命令行中使用下面的东西
newman run e_api.json -e ent_env.json --reporters cli,html
但它告诉我unable to verify the first certificate error
如何忽略 https/ssl 证书错误?
我尝试使用以下命令,但它不起作用。
newman run e_api.json -e ent_env.json --reporters cli,html --ignore-https_proxy
【问题讨论】:
试一试newman run e_api.json -e ent_env.json --reporters cli,html --insecure
【参考方案1】:
根据Newman documentation,有一个选项--insecure
可以禁用严格的SSL。
newman run e_api.json -e ent_env.json --reporters cli,html --insecure
【讨论】:
【参考方案2】:我也有同样的问题
这是我的第一个命令:
newman run "PostmanExport.json"
在这个命令上我重新保存了这个错误:
unable to verify the first certificate
我把我的命令改成这个
newman run "PostmanExport.json" --insecure
【讨论】:
以上是关于如何忽略 Newman 中的 SSL 证书错误的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 QWebEngineView 忽略 SSL 证书错误
如何让 ruby 的 xmlrpc 客户端忽略 SSL 证书错误?