POSTing to external API throws CORS but it works from Postman
Browser restricts HTTP requests to be at the same domain as your web page, so you won’t be able to hit imgur api directly from the browser without running into CORS issue. I am converting images to base64 strings and sending them via Postman works great. That’s because Postman is not a browser, so is … Read more