What does HRESULT 0x80190133 (HTTP_E_STATUS_REDIRECT_KEEP_VERB) mean?

 
Previous Next
HTTP_E_STATUS_USE_PROXY HTTP_E_STATUS_BAD_REQUEST

HTTP_E_STATUS_REDIRECT_KEEP_VERB

HTTP_E_STATUS_REDIRECT_KEEP_VERB maps to HTTP 307 Temporary Redirect. Unlike 302 and 303, a 307 redirect requires the client to preserve the request method and content when following the Location URI.

What to check

  • Ensure that the original request body is replayable before automatically following the redirect.
  • Verify that the redirect target is trusted, especially when authorization headers or signed requests are involved.
  • Check whether the redirect was caused by a temporary maintenance, routing, or regional failover rule.

RFC 9110: 307 Temporary Redirect


Looking for a different code? Search another status or error code.