0

When I execute a request from the server to receive data, I get a certificate error.

GET https://ip:5001/api/cards/online net::ERR_CERT_COMMON_NAME_INVALID

And to fix this, I decided to ignore certificate verification. But how to do that? Please give a hint.

1 Answers1

1

With regards to your question on how to ignore certificate verification, this depends on the client you are using to send this request. For example, if you are using cURL, you can add the flag -k to the command. In case you are using Postman, you can advise this StackOverFlow post

Yonatan Brand
  • 781
  • 3
  • 11