i have recently started testing a local basic API request.
The postrman request says that it is unable to verify the SSL certificate. But it works when I stop it from trying to verify it.
When I run the request in a useEffect in react:
Axios.get("https://localhost:7075/api/Contacts")
then it pops up with 200 ok, but CORS error, and so no information is shown.
What method is there to replicate the postman situation in react? Or is this the wrong direction?
if I try to access : https://localhost:7075/api/Contacts it shows the information in JSON as normal.