#CORS/Preflight request/OPTIONS http method

6 messages · Page 1 of 1 (latest)

prisma plinth
#

https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/OPTIONS
In CORS, a preflight request is sent with the HTTP OPTIONS method.

These three things are currently important for me to understand in depth: CORS, preflight request, and HTTP OPTIONS method.
My workplace have some bugs with these, and I need to fix it. But I can only find the mozilla developer guide about OPTIONS method that briefly glances over it.

Anyone know where I can dive deeper into this and learn it good enough, such that I can debug and fix complicated errors related to it? What would such a topic even be called if I have to search for books/courses about it?

trail lanternBOT
#

This post has been reserved for your question.

Hey @prisma plinth! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.

TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.

prisma plinth
shut void
#
MDN Web Docs

Cross-Origin Resource Sharing (CORS) is an HTTP-header based mechanism that allows a server to indicate any origins (domain, scheme, or port) other than its own from which a browser should permit loading resources. CORS also relies on a mechanism by which browsers make a "preflight" request to the server hosting the cross-origin resource, in ord...

#

Although book would be probably better.