0

rip no status code

Comments
  • 7
    you wont typically get a status code for CORS errors. CORS is typically resolved on the client side. First a HEAD request might be sent to ask the server what are the CORS requirements for any given endpoint, and after that the actual user browser figures out, if it should even send the real request.

    The Server cors request headers need to much what the client request wants to send for the request to be actually sent.
  • 8
    To have a status code you need to receive a response

    To have a response you need a request to be sent

    The error says "Request Blocked".

    No request == no response

    No money == no honey

    https://youtube.com/watch/...
  • 1
    In this particular case the error indicates that there was a network or protocol error during the preflight or the request.
Add Comment