2 months agoMultiple potential issues. First start with what kind of failure you’re getting in the browser. If it’s a CORS issue, it will tell you as much in the network tab. Otherwise take a look at the http response code for your next clue - 401 response likely means you’re not setting your Auth headers correctly; 400/500 error means you’re probably not formatting your payload correctly. Lastly, make sure you’re using the correct request method (GET/POST/PATCH/etc)
2 months agoI would first check the CORS and status code from browser, if it's cors we add our origin in the services if not I will check the status code and try to debug the code.
3 months ago90% of the time it’s a CORS issue if it works in postman but not in the browser. Update the API header to support localhost or disable CORS in the browser for development.
3 months agoThere are two possible issues. One is cors and the other could expired ssl certificate
