15

I use the following thing in the command line

newman run e_api.json -e ent_env.json --reporters cli,html

But it shows me unable to verify the first certificate error

How can I ignore https/ssl certificate error?

I tried using following command, but it's not working.

newman run e_api.json -e ent_env.json --reporters cli,html --ignore-https_proxy
1
  • 1
    Give a try newman run e_api.json -e ent_env.json --reporters cli,html --insecure Commented Apr 15, 2019 at 9:07

2 Answers 2

32

As per Newman documentation, there is an option --insecure to disable strict SSL.

newman run e_api.json -e ent_env.json --reporters cli,html --insecure
5

I have same problem

it is my first command :

newman run "PostmanExport.json"

on this command I resaved this error:

 unable to verify the first certificate 

I change my Command to this

 newman run "PostmanExport.json" --insecure

Not the answer you're looking for? Browse other questions tagged or ask your own question.