- Published on
When developing web applications, you might notice that before a POST request is
sent, your browser first sends an OPTIONS request. This behavior is often
confusing, especially when working with CORS (Cross-Origin Resource Sharing) and
different types of requests. So, why does your client always send an OPTIONS
request before a POST, and when does […]