Hacker News new | ask | show | jobs
by oneeyedpigeon 2044 days ago
But the same-origin policy implemented by your browser should prevent the request before it gets anywhere near the API.
1 comments

No, when a script tells a browsers to make a cross-origin request such as a GET or POST, the browser first makes a "pre-flight" request (without the payload) using the OPTIONS method to see what CORS-related response headers come back. If headers are returned that allow for it to proceed, the browser then makes whatever request the script asked for.

The network tab of developer tools should reveal all of this.