Reputation: 752
The problem is showing after requesting by following command on terminal.
dotnet dev-certs https --trust
Trusting the HTTPS development certificate was requested. Trusting the certificate on Linux distributions automatically is not supported. For instructions on how to manually trust the certificate on your Linux distribution, go to https://aka.ms/dev-certs-trust
A valid HTTPS certificate is already present.
Thanks for watching and helping me in advanced.
Upvotes: 0
Views: 1041
Reputation: 460
Postman tries to minimize the number of settings you have to change, so some defaults are automatically set. You can customize your settings based on your use case.
SSL certificate verification (native apps only): Prevents Postman from checking validity of SSL certificates while making a request. Set this option to OFF to open requests in a new tab. This option is, by default, set to OFF.
For more information please visit Troubleshooting requests or Setting up Postman
Upvotes: 1
Reputation: 19979
ECONNREFUSED is not certificate error it means the port is not open , meaning nothing is running on 5001.
Make sure your service is up and running and is accessible through localhost:5001
Upvotes: 2