每天一个 HTTP 状态码 203


203 Non-Authoritative Information

203 Non-Authoritative Information 'Non-Authoritative Informative' 直译过来是「非权威信息」的意思,这个状态码意味着当前响应的数据不完全与源服务器相同。它通常是由中间服务器(比如,一个代理服务器)返回给客户端的,这确实颇有「非权威信息」的意味,因为中间服务器接收到源服务器响应后,对其进行了一些修改??,所以源服务器的响应具体是什么,发请求的客户端是完全不知情的??。

实例

请求:

GET /news HTTP/2

响应:

HTTP/2 203 Non-Authoritative Information
Content-Type: application/json
Content-Length: 666

参考

  • List of HTTP status codes
  • HTTP response status codes
  • 203 Non-Authoritative Information