Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.82 KB

203.md

File metadata and controls

34 lines (27 loc) · 1.82 KB
set code title references
2
203
Non-authoritative Information
Rails HTTP Status Symbol Go HTTP Status Constant Symfony HTTP Status Constant Python2 HTTP Status Constant Python3+ HTTP Status Constant Python3.5+ HTTP Status Constant
:non_authoritative_information
http.StatusNonAuthoritativeInfo
Response::HTTP_NON_AUTHORITATIVE_INFORMATION
httplib.NON_AUTHORITATIVE_INFORMATION
http.client.NON_AUTHORITATIVE_INFORMATION
http.HTTPStatus.NON_AUTHORITATIVE_INFORMATION

The request was successful but the enclosed payload has been modified from that of the origin server's 200 OK response by a transforming proxy1.

This status code allows the proxy to notify recipients when a transformation has been applied, since that knowledge might impact later decisions regarding the content. For example, future cache validation requests for the content might only be applicable along the same request path (through the same proxies).

The 203 response is similar to the Warning code of 214 Transformation Applied2, which has the advantage of being applicable to responses with any status code.

A 203 response is cacheable by default; i.e., unless otherwise indicated by the method definition or explicit cache controls3.