HTTP状态码查询

快速查询HTTP状态码含义,了解网络请求响应、服务器错误与客户端错误。

绿色工具
{ "columns": [ { "id": "code", "header": "状态码", "accessorKey": "code" }, { "id": "title", "header": "说明", "accessorKey": "title" }, { "id": "description", "header": "描述", "accessorKey": "description" }, { "id": "category", "header": "分类", "accessorKey": "category" } ], "data": [ { "code": "100", "title": "继续(Continue)", "description": "请求者应当继续提出请求。服务器返回此代码表示已收到请求的第一部分,正在等待其余部分\nThe server has received the request headers and the client should proceed to send the request body.", "category": "1xx 状态:临时响应" }, { "code": "101", "title": "切换协议(Switching Protocols)", "description": "请求者已要求服务器切换协议,服务器已确认并做好了的切换的准备\nThe requester has asked the server to switch protocols and the server has agreed to do so.", "category": "1xx 状态:临时响应" }, { "code": "200", "title": "成功(Success)", "description": "服务器已成功处理了请求。 通常,这表示服务器提供了请求的网页\nStandard response for successful HTTP requests.", "category": "2xx 状态:成功响应" }, { "code": "201", "title": "已创建(Created)", "description": "请求成功,并且服务器创建了新的资源\nThe request has been fulfilled, resulting in the creation of a new resource.", "category": "2xx 状态:成功响应" }, { "code": "202", "title": "已接受(Accepted)", "description": "服务器已接受请求,但尚未处理\nThe request has been accepted for processing, but the processing has not been completed.", "category": "2xx 状态:成功响应" }, { "code": "203", "title": "非授权信息(Non Authoritative Information)", "description": "服务器已成功处理了请求,但返回的信息可能来自另一来源\nThe server is a transforming proxy that received a 200 OK from its origin, but is returning a modified version of the origin's response.", "category": "2xx 状态:成功响应" }, { "code": "204", "title": "无内容(No Content)", "description": "服务器成功处理了请求,但没有返回任何内容\nThe server successfully processed the request and is not returning any content.", "category": "2xx 状态:成功响应" }, { "code": "205", "title": "重置内容(Reset Content)", "description": "服务器成功处理了请求,但没有返回任何内容。该响应要求浏览器重置它所显示的内容\nThe server successfully processed the request, but is not returning any content. This response requires that the requester reset the document view.", "category": "2xx 状态:成功响应" }, { "code": "206", "title": "部分内容(Partial Content)", "description": "由于客户端发送了 range 头信息,服务器成功返回了部分资源\nThe server is delivering only part of the resource due to a range header sent by the client.", "category": "2xx 状态:成功响应" }, { "code": "300", "title": "多种选择(Multiple Choices)", "description": "针对不同请求,服务器可执行多种操作。服务器可根据请求者的选择执行对应的操作,或者提供一个操作列表供请求者选择\nIndicates that multiple options for the resource from which the client may choose.", "category": "3xx 状态:重定向" }, { "code": "301", "title": "永久移动(Moved Permanently)", "description": "请求的网页已永久移动到新位置。对于 GET 或 HEAD 请求,服务器返回此响应时,会自动将请求者转到新位置\nIndicates the resource had been moved to another location permanently. This and all future requests should be directed to the given URI.", "category": "3xx 状态:重定向" }, { "code": "302", "title": "资源已找到(临时移动)(Found (Moved Temporarily))", "description": "告诉客户端,请到另一处 URL 获取需要的资源(该状态已被 303 和 307 状态取代)\nTells the client to look at (browse to) another URL (302 code has been superseded by 303 and 307).", "category": "3xx 状态:重定向" }, { "code": "303", "title": "查看其他位置(See Other)", "description": "请求者应当对不同的位置使用单独的 GET 请求来获取资源时,服务器返回此代码\nThe response to the request can be found under another URI using the GET method.", "category": "3xx 状态:重定向" }, { "code": "304", "title": "资源未修改(Not Modified)", "description": "自从上次请求后,网页未做过修改。服务器返回此响应时,不会返回网页内容\nIndicates that the resource has not been modified since the version specified by the request headers If-Modified-Since or If-None-Match.", "category": "3xx 状态:重定向" }, { "code": "305", "title": "使用代理(Use Proxy)", "description": "请求者只能使用代理访问所请求的资源。资源地址将包含在响应中(出于安全考虑,许多客户端不会遵守该响应状态)\nThe requested resource is available only through a proxy, the address for which is provided in the response.", "category": "3xx 状态:重定向" }, { "code": "306", "title": "切换代理(Switch Proxy)", "description": "后续请求应该使用指定的代理(在最新版的 HTTP 规范中,该状态码已经不再使用)\nNo longer used. Subsequent requests should use the specified proxy.", "category": "3xx 状态:重定向" }, { "code": "307", "title": "临时重定向(Temporary Redirect)", "description": "请求者应使用另一个 URL 重新发起一次请求,但后续的请求仍应使用原来的 URL\nThe request should be repeated with another URI; however, future requests should still use the original URI.", "category": "3xx 状态:重定向" }, { "code": "308", "title": "永久重定向(Permanent Redirect)", "description": "当前请求和后续的请求都应该向另一个 URL 发起请求\nThe request and all future requests should be repeated using another URI.", "category": "3xx 状态:重定向" }, { "code": "400", "title": "错误请求(Bad Request)", "description": "服务器不理解客户端请求的语法,如:请求语法错误、请求体过大以及带有欺骗性的请求路径\nThe server cannot or will not process the request due to an apparent client error.", "category": "4xx 状态:客户端错误" }, { "code": "401", "title": "未授权(Unauthorized)", "description": "访问的资源要求身份验证,但请求时未提供授权或提供了错误的授权。对于需要登录的网页,服务器可能返回此响应\nThe resource which authentication is required and not yet been provided (or failed).", "category": "4xx 状态:客户端错误" }, { "code": "402", "title": "需要支付信息(Payment Required)", "description": "为以后使用保留。通常用于需要提供支付的场景,如数字钞票或在线支付。一个例子是:Google 开发者 API 使用 402 状态来表示超过了每日请求上限的情况\nReserved for future use. Might be used as part of some form of digital cash or micropayment scheme, but that has not yet happened.", "category": "4xx 状态:客户端错误" }, { "code": "403", "title": "禁止访问(Forbidden)", "description": "服务器已收到请求,但拒绝提供服务。出现此状态通常是因为请求者没有足够的权限访问请求的资源\nThe request contained valid data and was understood by the server, but the server is refusing action. This may be due to the user not having the necessary permissions for a resource or needing an account of some sort, or attempting a prohibited action.", "category": "4xx 状态:客户端错误" }, { "code": "404", "title": "未找到(Not Found)", "description": "服务器找不到请求的网页或资源\nThe requested resource could not be found but may be available in the future.", "category": "4xx 状态:客户端错误" }, { "code": "405", "title": "不支持的请求方法(Method Not Allowed)", "description": "服务器不支持当前请求方法。比如:某些资源只支持 GET 和 POST 请求,如果发起 HEAD 请求,服务器将返回该状态\nA request method is not supported for the requested resource.", "category": "4xx 状态:客户端错误" }, { "code": "406", "title": "不被接受(Not Acceptable)", "description": "服务器无法使用请求的内容特性响应请求的网页,即:不支持请求头部中 Accept 字段对应的内容\nThe requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.", "category": "4xx 状态:客户端错误" }, { "code": "407", "title": "需要代理授权(Proxy Authentication Required)", "description": "此状态代码与 401(未授权)类似,但指定请求者应当授权使用代理\nThe client must first authenticate itself with the proxy.", "category": "4xx 状态:客户端错误" }, { "code": "408", "title": "请求超时(Request Timeout)", "description": "服务器等候请求时发生超时\nThe server timed out waiting for the request.", "category": "4xx 状态:客户端错误" }, { "code": "409", "title": "请求冲突(Conflict)", "description": "服务器在完成请求时发生冲突。服务器必须在响应中包含有关冲突的信息\nIndicates that the request could not be processed because of conflict in the current state of the resource.", "category": "4xx 状态:客户端错误" }, { "code": "410", "title": "已删除(Gone)", "description": "如果请求的资源已永久删除,服务器就会返回此响应\nIndicates that the resource requested is no longer available and will not be available again.", "category": "4xx 状态:客户端错误" }, { "code": "411", "title": "需要有效长度(Length Required)", "description": "服务器无法处理不含有内容长度标头字段(Content-Length)的请求\nThe request did not specify the length of its content, which is required by the requested resource.", "category": "4xx 状态:客户端错误" }, { "code": "412", "title": "未满足前提条件(Precondition Failed)", "description": "服务器未满足请求者在请求中设置的其中一个前提条件\nThe server does not meet one of the preconditions that the requester put on the request header fields.", "category": "4xx 状态:客户端错误" }, { "code": "413", "title": "请求实体过大(Payload Too Large)", "description": "服务器无法处理请求,因为请求实体过大,超出服务器的处理能力\nThe request is larger than the server is willing or able to process. Previously called \"Request Entity Too Large\".", "category": "4xx 状态:客户端错误" }, { "code": "414", "title": "请求的 URI 过长(URI Too Long)", "description": "请求的 URI(通常为网址)过长,服务器无法处理\nThe URI provided was too long for the server to process. Called \"Request-URI Too Long\" previously.", "category": "4xx 状态:客户端错误" }, { "code": "415", "title": "不支持的媒体类型(Unsupported Media Type)", "description": "服务器不支持请求的内容格式(Content-Type)\nThe request entity has a media type which the server or resource does not support.", "category": "4xx 状态:客户端错误" }, { "code": "416", "title": "请求范围不符合要求(Range Not Satisfiable)", "description": "客户端请求服务器资源的某一部分,但服务器不能提供该部分内容时,则会返回此状态码\nThe client has asked for a portion of the file (byte serving), but the server cannot supply that portion.", "category": "4xx 状态:客户端错误" }, { "code": "417", "title": "未满足期望值(Expectation Failed)", "description": "服务器不能满足 \"Expection\" 请求头部的要求时返回该状态码\nThe server cannot meet the requirements of the Expect request-header field.", "category": "4xx 状态:客户端错误" }, { "code": "421", "title": "地址错误的请求(Misdirected Request)", "description": "当请求被定向到一个不能输出响应的服务器时,则会返回该状态\nThe request was directed at a server that is not able to produce a response.", "category": "4xx 状态:客户端错误" }, { "code": "422", "title": "无法处理的实体(Unprocessable Entity)", "description": "请求格式正确,但由于语义错误,导致无法响应请求\nThe request was well-formed but was unable to be followed due to semantic errors.", "category": "4xx 状态:客户端错误" }, { "code": "423", "title": "被锁定(Locked)", "description": "正在访问的资源已被锁定\nThe resource that is being accessed is locked.", "category": "4xx 状态:客户端错误" }, { "code": "424", "title": "依赖请求失败(Failed Dependency)", "description": "由于之前的某个请求(即依赖的请求)发生错误,导致当前请求失败\nThe request failed because it depended on another request and that request failed.", "category": "4xx 状态:客户端错误" }, { "code": "500", "title": "服务器内部错误(Internal Server Error)", "description": "服务器内部发生错误,无法完成请求\nA generic error message, given when an unexpected condition was encountered and no more specific message is suitable.", "category": "5xx 状态:服务器错误" }, { "code": "501", "title": "尚未实现(Not Implemented)", "description": "服务器尚不具备完成请求的条件:要么无法识别请求方法;要么缺乏完成请求的能力\nThe server either does not recognize the request method, or it lacks the ability to fulfil the request.", "category": "5xx 状态:服务器错误" }, { "code": "502", "title": "错误网关(Bad Gateway)", "description": "服务器作为网关或代理,从上游服务器收到无效响应\nThe server was acting as a gateway or proxy and received an invalid response from the upstream server.", "category": "5xx 状态:服务器错误" }, { "code": "503", "title": "服务不可用(Service Unavailable)", "description": "服务器目前无法使用(由于超载或停机维护)。通常,这只是一个暂时的状态\nThe server can't handle the request (because it is overloaded or down for maintenance). Generally, this is a temporary state.", "category": "5xx 状态:服务器错误" }, { "code": "504", "title": "网关超时(Gateway Timeout)", "description": "服务器作为网关或代理,但是没有及时从上游服务器收到请求\nThe server was acting as a gateway or proxy and did not receive a timely response from the upstream server.", "category": "5xx 状态:服务器错误" }, { "code": "505", "title": "不支持的 HTTP 协议版本(HTTP Version Not Supported)", "description": "服务器不支持请求中所用的 HTTP 协议版本\nThe server does not support the HTTP protocol version used in the request.", "category": "5xx 状态:服务器错误" } ] }

评分

0 / 5

0 人评分

数据

浏览次数:3129

使用次数:3143

[object Object]
[object Object]
[object Object]