nuget server logo nuget api documents
↑

API Docs / Microsoft.VisualBasic.Runtime / HTTP_RFC

HTTP_RFC

Full name Microsoft.VisualBasic.Net.Http.HTTP_RFC Assembly Microsoft.VisualBasic.Runtime Members 156

The following is a list of Hypertext Transfer Protocol (HTTP) response status codes. This includes codes from IETF internet standards as well as other IETF RFCs, other specifications and some additional commonly used codes. The first digit of the status code specifies one of five classes of response; the bare minimum for an HTTP client is that it recognises these five classes. The phrases used are the standard examples, but any human-readable alternative can be provided. Unless otherwise stated, the status code is part of the HTTP/1.1 standard (RFC 7231).

The Internet Assigned Numbers Authority (IANA) maintains the official registry Of HTTP status codes.

Microsoft IIS sometimes uses additional Decimal Sub-codes To provide more specific information, but these are Not listed here.

00 Remarks

20240410

some duplicated value http status code has been removed due to the reason of http server module use this enum value for build a http status text dictionary will crashed due to the existed duplicated value.

01 Syntax

Microsoft.VisualBasic.Net.Http.HTTP_RFC

02 Fields

NameOverloadsSummary
RFC_CONTINUTE 2 100 Continue | This means that the server has received the request headers, And that the client should proceed To send the request body (In the Case Of a request For which a bod…
RFC_SWITCHING_PROTOCOLS 2 101 Switching Protocols | This means the requester has asked the server To switch protocols And the server Is acknowledging that it will Do so.
RFC_PROCESSING 2 102 Processing (WebDAV; RFC 2518) | As a WebDAV request may contain many sub-requests involving file operations, it may take a long time to complete the request.
RFC_OK 2 200 OK | Standard response For successful HTTP requests.
RFC_CREATED 2 201 Created | The request has been fulfilled And resulted In a New resource being created.
RFC_ACCEPTED 2 202 Accepted | The request has been accepted For processing, but the processing has Not been completed.
RFC_NON_AUTH_INFO 2 203 Non-Authoritative Information (since HTTP/1.1) | The server successfully processed the request, but Is returning information that may be from another source.
RFC_NO_CONTENT 2 204 No Content | The server successfully processed the request, but Is Not returning any content.
RFC_RESET_CONTENT 2 205 Reset Content | The server successfully processed the request, but Is Not returning any content.
RFC_PARTIAL_CONTENT 2 206 Partial Content (RFC 7233) | The server Is delivering only part Of the resource (Byte serving) due To a range header sent by the client.
RFC_MULTI_STATUS 2 207 Multi-Status (WebDAV; RFC 4918) | The message body that follows Is an XML message And can contain a number Of separate response codes, depending On how many Sub-requests were…
RFC_ALREADY_REPORTED 2 208 Already Reported (WebDAV; RFC 5842) | The members Of a DAV binding have already been enumerated In a previous reply To this request, And are Not being included again.
RFC_IM_USED 2 226 IM Used (RFC 3229) | The server has fulfilled a request For the resource, And the response Is a representation Of the result Of one Or more instance-manipulations applied To t…
RFC_MULTI_CHOICES 2 300 Multiple Choices | Indicates multiple options For the resource that the client may follow.
RFC_MOVED_PERMANENTLY 2 301 Moved Permanently | This And all future requests should be directed to the given URI.
RFC_FOUND 2 302 Found | This Is an example of industry practice contradicting the standard.
RFC_SEE_OTHER 2 303 See Other (since HTTP/1.1) | The response To the request can be found under another URI Using a Get method.
RFC_NOT_MODIFIED 2 304 Not Modified (RFC 7232) | Indicates that the resource has Not been modified since the version specified by the request headers If-Modified-Since Or If-None-Match.
RFC_USE_PROXY 2 305 Use Proxy (since HTTP/1.1) | The requested resource Is only available through a proxy, whose address Is provided In the response.
RFC_SWITCH_PROXY 2 306 Switch Proxy | No longer used.
RFC_TEMP_REDIRECT 2 307 Temporary Redirect (since HTTP/1.1) | In this case, the request should be repeated with another URI; however, future requests should still use the original URI.
RFC_PERMANENT_REDIRECT 2 308 Permanent Redirect (RFC 7538) | The request, and all future requests should be repeated Using another URI.
RFC_BAD_REQUEST 2 400 Bad Request | The server cannot Or will Not process the request due To something that Is perceived To be a client Error (e.g., malformed request syntax, invalid request mess…
RFC_UNAUTHORIZED 2 401 Unauthorized (RFC 7235) | Similar to 403 Forbidden, but specifically for use when authentication Is required And has failed Or has Not yet been provided.
RFC_PAYMENT_REQUIRED 2 402 Payment Required | Reserved for future use.
RFC_FORBIDDEN 2 403 Forbidden | The request was a valid request, but the server Is refusing To respond To it.
RFC_NOT_FOUND 2 404 Not Found | The requested resource could Not be found but may be available again In the future.
RFC_METHOD_NOT_ALLOWED 2 405 Method Not Allowed | A request was made Of a resource Using a request method Not supported by that resource; For example, Using Get On a form which requires data To be prese…
RFC_NOT_ACCEPTABLE 2 406 Not Acceptable | The requested resource Is only capable Of generating content Not acceptable according To the Accept headers sent In the request.
RFC_PROXY_AUTH_REQUIRED 2 407 Proxy Authentication Required (RFC 7235) | The client must first authenticate itself With the proxy.
RFC_REQUEST_TIMEOUT 2 408 Request Timeout | The server timed out waiting For the request.
RFC_CONFLICT 2 409 Conflict | Indicates that the request could Not be processed because Of conflict In the request, such As an edit conflict In the Case Of multiple updates.
RFC_GONE 2 410 Gone | Indicates that the resource requested Is no longer available And will Not be available again.
RFC_LENGTH_REQUIRED 2 411 Length Required | The request did Not specify the length Of its content, which Is required by the requested resource.
RFC_PRECONDITION_FAILED 2 412 Precondition Failed (RFC 7232) | The server does Not meet one Of the preconditions that the requester put On the request.
RFC_PAYLOAD_TOO_LARGE 2 413 Payload Too Large (RFC 7231) | The request Is larger than the server Is willing Or able To process.
RFC_URI_TOO_LONG 2 414 Request-URI Too Long | The URI provided was too Long For the server To process.
RFC_UNSUPPORTED_MEDIA_TYPE 2 415 Unsupported Media Type | The request entity has a media type which the server Or resource does Not support.
RFC_RANGE_NOT_SATISFIABLE 2 416 Requested Range Not Satisfiable (RFC 7233) | The client has asked For a portion Of the file (Byte serving), but the server cannot supply that portion.
RFC_EXPECTATION_FAILED 2 417 Expectation Failed | The server cannot meet the requirements Of the Expect request-header field.
RFC_IM_TEAPOT 2 418 I'm a teapot (RFC 2324) | This code was defined In 1998 As one Of the traditional IETF April Fools' jokes, in RFC 2324, Hyper Text Coffee Pot Control Protocol, and is not ex…
RFC_AUTH_TIMEOUT 2 419 Authentication Timeout (Not in RFC 2616) | Not a part of the HTTP standard, 419 Authentication Timeout denotes that previously valid authentication has expired.
RFC_METHOD_FAILURE 2 420 Method Failure (Spring Framework) | Not part of the HTTP standard, but defined by Spring in the HttpStatus class to be used when a method failed.
RFC_MISDIRECTED_REQUEST 2 421 Misdirected Request (HTTP/2) | The request was directed at a server that Is Not able To produce a response (For example because a connection reuse).[18]
RFC_UNPROCESSABLE_ENTITY 2 422 Unprocessable Entity (WebDAV; RFC 4918) | The request was well-formed but was unable To be followed due To semantic errors.[4]
RFC_LOCKED 2 423 Locked (WebDAV; RFC 4918) | The resource that Is being accessed Is locked.[4]
RFC_FAILED_DEPENDENCY 2 424 Failed Dependency (WebDAV; RFC 4918) | The request failed due To failure Of a previous request (e.g., a PROPPATCH).[4]
RFC_UPGRADE_REQUIRED 2 426 Upgrade Required | The client should switch To a different protocol such As TLS/1.0, given In the Upgrade header field.
RFC_PRECONDITION_REQUIRED 2 428 Precondition Required (RFC 6585) | The origin server requires the request To be conditional.
RFC_TOO_MANY_REQUEST 2 429 Too Many Requests (RFC 6585) | The user has sent too many requests In a given amount Of time.
RFC_REQUEST_HEADER_FIELDS_TOO_LARGE 2 431 Request Header Fields Too Large (RFC 6585) | The server Is unwilling To process the request because either an individual header field, Or all the header fields collectively, a…
RFC_LOGIN_TIMEOUT 2 440 Login Timeout (Microsoft) | A Microsoft extension.
RFC_NO_RESPONSE 2 444 No Response (Nginx) | Used in Nginx logs to indicate that the server has returned no information to the client And closed the connection (useful as a deterrent for malware).
RFC_RETRY_WITH 2 449 Retry With (Microsoft) | A Microsoft extension.
RFC_BLOCKED 2 450 Blocked by Windows Parental Controls (Microsoft) | A Microsoft extension.
RFC_LEGAL_UNAVAILABLE 2 451 Unavailable For Legal Reasons (Internet draft) | Defined in the internet draft "A New HTTP Status Code for Legally-restricted Resources".[23] Intended to be used when resour…
RFC_REQUEST_HEADER_TOO_LARGE 2 494 Request Header Too Large (Nginx) | Nginx internal code similar To 431 but it was introduced earlier In version 0.9.4 (On January 21, 2011).[27][original research?]
RFC_CERT_ERROR 2 495 Cert Error (Nginx) | Nginx internal code used When SSL client certificate Error occurred To distinguish it from 4XX In a log And an Error page redirection.
RFC_NO_CERT 2 496 No Cert (Nginx) | Nginx internal code used When client didn't provide certificate to distinguish it from 4XX in a log and an error page redirection.
RFC_HTTP_TO_HTTPS 2 497 HTTP to HTTPS (Nginx) | Nginx internal code used For the plain HTTP requests that are sent To HTTPS port To distinguish it from 4XX In a log And an Error page redirection.
RFC_TOKEN_INVALID 2 498 Token expired/invalid (Esri) | Returned by ArcGIS For Server.
RFC_CLOSED_REQUEST 2 499 Client Closed Request (Nginx) | Used in Nginx logs to indicate when the connection has been closed by client while the server Is still processing its request, making server un…
RFC_INTERNAL_SERVER_ERROR 2 500 Internal Server Error | A generic Error message, given When an unexpected condition was encountered And no more specific message Is suitable.
RFC_NOT_IMPLEMENTED 2 501 Not Implemented | The server either does Not recognize the request method, Or it lacks the ability To fulfill the request.
RFC_BAD_GATEWAY 2 502 Bad Gateway | The server was acting As a gateway Or proxy And received an invalid response from the upstream server.
RFC_SERVICE_UNAVAILABLE 2 503 Service Unavailable | The server Is currently unavailable (because it Is overloaded Or down For maintenance).
RFC_GATEWAY_TIMEOUT 2 504 Gateway Timeout | The server was acting As a gateway Or proxy And did Not receive a timely response from the upstream server.
RFC_VERSION_NOT_SUPPORTED 2 505 HTTP Version Not Supported | The server does Not support the HTTP protocol version used In the request.
RFC_NEGOTIATES 2 506 Variant Also Negotiates (RFC 2295) | Transparent content negotiation For the request results In a circular reference.[30]
RFC_INSUFFICIENT_STORAGE 2 507 Insufficient Storage (WebDAV; RFC 4918) | The server Is unable To store the representation needed To complete the request.[4]
RFC_LOOP_DETECTED 2 508 Loop Detected (WebDAV; RFC 5842) | The server detected an infinite Loop While processing the request (sent In lieu Of 208 Already Reported).
RFC_BANDWIDTH_LIMITED_EXCEEDED 2 509 Bandwidth Limit Exceeded (Apache bw/limited extension)[31] | This status code Is Not specified In any RFCs.
RFC_NOT_EXTENDED 2 510 Not Extended (RFC 2774) | Further extensions To the request are required For the server To fulfil it.[32]
RFC_NETWORK_AUTH_REQUIRED 2 511 Network Authentication Required (RFC 6585) | The client needs To authenticate To gain network access.
RFC_UNKNOWN_ERROR 2 520 Unknown Error | This status code Is Not specified In any RFC And Is returned by certain services, For instance Microsoft Azure And CloudFlare servers: "The 520 error is esse…
RFC_CONNECTION_TIMEOUT 2 522 Origin Connection Time-out | This status code Is Not specified In any RFCs, but Is used by CloudFlare's reverse proxies to signal that a server connection timed out.
RFC_READ_TIMEOUT_ERROR 2 598 Network read timeout error (Unknown) | This status code Is Not specified In any RFCs, but Is used by Microsoft HTTP proxies To signal a network read timeout behind the proxy T…
RFC_CONNECT_TIMEOUT_ERROR 2 599 Network connect timeout error (Unknown) | This status code Is Not specified In any RFCs, but Is used by Microsoft HTTP proxies To signal a network connect timeout behind the p…

03 Members

field RFC_CONTINUTE #
RFC_CONTINUTE

100 Continue | This means that the server has received the request headers, And that the client should proceed To send the request body (In the Case Of a request For which a body needs To be sent; For example, a POST request). If the request body Is large, sending it To a server When a request has already been rejected based upon inappropriate headers Is inefficient. To have a server check If the request could be accepted based On the request's headers alone, a client must send Expect: 100-continue as a header in its initial request and check if a 100 Continue status code is received in response before continuing (or receive 417 Expectation Failed and not continue).

field RFC_SWITCHING_PROTOCOLS #
RFC_SWITCHING_PROTOCOLS

101 Switching Protocols | This means the requester has asked the server To switch protocols And the server Is acknowledging that it will Do so.

field RFC_PROCESSING #
RFC_PROCESSING

102 Processing (WebDAV; RFC 2518) | As a WebDAV request may contain many sub-requests involving file operations, it may take a long time to complete the request. This code indicates that the server has received And Is processing the request, but no response Is available yet.[3] This prevents the client from timing out And assuming the request was lost.

field RFC_OK #
RFC_OK

200 OK | Standard response For successful HTTP requests. The actual response will depend On the request method used. In a Get request, the response will contain an entity corresponding To the requested resource. In a POST request, the response will contain an entity describing Or containing the result Of the action. (由于可能会修改附带一些其他的元素据信息,所以只读属性不会使用简写的形式的,而是需要重新生成新的对象实例以防止数据污染)

field RFC_CREATED #
RFC_CREATED

201 Created | The request has been fulfilled And resulted In a New resource being created.

field RFC_ACCEPTED #
RFC_ACCEPTED

202 Accepted | The request has been accepted For processing, but the processing has Not been completed. The request might Or might Not eventually be acted upon, As it might be disallowed When processing actually takes place.

field RFC_NON_AUTH_INFO #
RFC_NON_AUTH_INFO

203 Non-Authoritative Information (since HTTP/1.1) | The server successfully processed the request, but Is returning information that may be from another source.

field RFC_NO_CONTENT #
RFC_NO_CONTENT

204 No Content | The server successfully processed the request, but Is Not returning any content.

field RFC_RESET_CONTENT #
RFC_RESET_CONTENT

205 Reset Content | The server successfully processed the request, but Is Not returning any content. Unlike a 204 response, this response requires that the requester reset the document view.

field RFC_PARTIAL_CONTENT #
RFC_PARTIAL_CONTENT

206 Partial Content (RFC 7233) | The server Is delivering only part Of the resource (Byte serving) due To a range header sent by the client. The range header Is used by HTTP clients To enable resuming Of interrupted downloads, Or split a download into multiple simultaneous streams.

field RFC_MULTI_STATUS #
RFC_MULTI_STATUS

207 Multi-Status (WebDAV; RFC 4918) | The message body that follows Is an XML message And can contain a number Of separate response codes, depending On how many Sub-requests were made.[4]

field RFC_ALREADY_REPORTED #
RFC_ALREADY_REPORTED

208 Already Reported (WebDAV; RFC 5842) | The members Of a DAV binding have already been enumerated In a previous reply To this request, And are Not being included again.

field RFC_IM_USED #
RFC_IM_USED

226 IM Used (RFC 3229) | The server has fulfilled a request For the resource, And the response Is a representation Of the result Of one Or more instance-manipulations applied To the current instance.[5]

field RFC_MULTI_CHOICES #
RFC_MULTI_CHOICES

300 Multiple Choices | Indicates multiple options For the resource that the client may follow. It, For instance, could be used To present different format options For video, list files With different extensions, Or word sense disambiguation.

field RFC_MOVED_PERMANENTLY #
RFC_MOVED_PERMANENTLY

301 Moved Permanently | This And all future requests should be directed to the given URI.

field RFC_FOUND #
RFC_FOUND

302 Found | This Is an example of industry practice contradicting the standard. The HTTP/1.0 specification (RFC 1945) required the client to perform a temporary redirect (the original describing phrase was "Moved Temporarily"),[6] but popular browsers implemented 302 with the functionality of a 303 See Other. Therefore, HTTP/1.1 added status codes 303 And 307 to distinguish between the two behaviours.[7] However, some Web applications And frameworks use the 302 status code as if it were the 303.[8]

field RFC_SEE_OTHER #
RFC_SEE_OTHER

303 See Other (since HTTP/1.1) | The response To the request can be found under another URI Using a Get method. When received In response To a POST (Or PUT/DELETE), it should be assumed that the server has received the data And the redirect should be issued With a separate Get message.

field RFC_NOT_MODIFIED #
RFC_NOT_MODIFIED

304 Not Modified (RFC 7232) | Indicates that the resource has Not been modified since the version specified by the request headers If-Modified-Since Or If-None-Match. This means that there Is no need To retransmit the resource, since the client still has a previously-downloaded copy.

field RFC_USE_PROXY #
RFC_USE_PROXY

305 Use Proxy (since HTTP/1.1) | The requested resource Is only available through a proxy, whose address Is provided In the response. Many HTTP clients (such As Mozilla[9] And Internet Explorer) Do Not correctly handle responses With this status code, primarily For security reasons.[10]

field RFC_SWITCH_PROXY #
RFC_SWITCH_PROXY

306 Switch Proxy | No longer used. Originally meant "Subsequent requests should use the specified proxy."[11]

field RFC_TEMP_REDIRECT #
RFC_TEMP_REDIRECT

307 Temporary Redirect (since HTTP/1.1) | In this case, the request should be repeated with another URI; however, future requests should still use the original URI. In contrast to how 302 was historically implemented, the request method Is Not allowed to be changed when reissuing the original request. For instance, a POST request should be repeated using another POST request.[12]

field RFC_PERMANENT_REDIRECT #
RFC_PERMANENT_REDIRECT

308 Permanent Redirect (RFC 7538) | The request, and all future requests should be repeated Using another URI. 307 And 308 (As proposed) parallel the behaviours Of 302 And 301, but Do Not allow the HTTP method To change. So, For example, submitting a form To a permanently redirected resource may Continue smoothly.[13]

Remarks

20240417 andalso alias for

308 Resume Incomplete (Google) | This code Is used In the Resumable HTTP Requests Proposal To Resume aborted PUT Or POST requests.[14]

field RFC_BAD_REQUEST #
RFC_BAD_REQUEST

400 Bad Request | The server cannot Or will Not process the request due To something that Is perceived To be a client Error (e.g., malformed request syntax, invalid request message framing, Or deceptive request routing).[15]

field RFC_UNAUTHORIZED #
RFC_UNAUTHORIZED

401 Unauthorized (RFC 7235) | Similar to 403 Forbidden, but specifically for use when authentication Is required And has failed Or has Not yet been provided. The response must include a WWW-Authenticate header field containing a challenge applicable to the requested resource. See Basic access authentication And Digest access authentication.(证书未认证)

field RFC_PAYMENT_REQUIRED #
RFC_PAYMENT_REQUIRED

402 Payment Required | Reserved for future use. The original intention was that this code might be used as part of some form of digital cash Or micropayment scheme, but that has Not happened, And this code Is Not usually used. YouTube uses this status if a particular IP address has made excessive requests, And requires the person to enter a CAPTCHA.[citation needed]

field RFC_FORBIDDEN #
RFC_FORBIDDEN

403 Forbidden | The request was a valid request, but the server Is refusing To respond To it. Unlike a 401 Unauthorized response, authenticating will make no difference. (被封号了)

field RFC_NOT_FOUND #
RFC_NOT_FOUND

404 Not Found | The requested resource could Not be found but may be available again In the future. Subsequent requests by the client are permissible.

field RFC_METHOD_NOT_ALLOWED #
RFC_METHOD_NOT_ALLOWED

405 Method Not Allowed | A request was made Of a resource Using a request method Not supported by that resource; For example, Using Get On a form which requires data To be presented via POST, Or Using PUT On a read-only resource.

field RFC_NOT_ACCEPTABLE #
RFC_NOT_ACCEPTABLE

406 Not Acceptable | The requested resource Is only capable Of generating content Not acceptable according To the Accept headers sent In the request.

field RFC_PROXY_AUTH_REQUIRED #
RFC_PROXY_AUTH_REQUIRED

407 Proxy Authentication Required (RFC 7235) | The client must first authenticate itself With the proxy.

field RFC_REQUEST_TIMEOUT #
RFC_REQUEST_TIMEOUT

408 Request Timeout | The server timed out waiting For the request. According To HTTP specifications: "The client did not produce a request within the time that the server was prepared to wait. The client MAY repeat the request without modifications at any later time." (请求超时)

field RFC_CONFLICT #
RFC_CONFLICT

409 Conflict | Indicates that the request could Not be processed because Of conflict In the request, such As an edit conflict In the Case Of multiple updates.

field RFC_GONE #
RFC_GONE

410 Gone | Indicates that the resource requested Is no longer available And will Not be available again. This should be used When a resource has been intentionally removed And the resource should be purged. Upon receiving a 410 status code, the client should Not request the resource again In the future. Clients such As search engines should remove the resource from their indices.[16] Most use cases Do Not require clients And search engines To purge the resource, And a "404 Not Found" may be used instead.

field RFC_LENGTH_REQUIRED #
RFC_LENGTH_REQUIRED

411 Length Required | The request did Not specify the length Of its content, which Is required by the requested resource.

field RFC_PRECONDITION_FAILED #
RFC_PRECONDITION_FAILED

412 Precondition Failed (RFC 7232) | The server does Not meet one Of the preconditions that the requester put On the request.

field RFC_PAYLOAD_TOO_LARGE #
RFC_PAYLOAD_TOO_LARGE

413 Payload Too Large (RFC 7231) | The request Is larger than the server Is willing Or able To process. Called "Request Entity Too Large " previously.

field RFC_URI_TOO_LONG #
RFC_URI_TOO_LONG

414 Request-URI Too Long | The URI provided was too Long For the server To process. Often the result Of too much data being encoded As a query-String Of a Get request, In which Case it should be converted To a POST request.

field RFC_UNSUPPORTED_MEDIA_TYPE #
RFC_UNSUPPORTED_MEDIA_TYPE

415 Unsupported Media Type | The request entity has a media type which the server Or resource does Not support. For example, the client uploads an image As image/svg+xml, but the server requires that images use a different format.

field RFC_RANGE_NOT_SATISFIABLE #
RFC_RANGE_NOT_SATISFIABLE

416 Requested Range Not Satisfiable (RFC 7233) | The client has asked For a portion Of the file (Byte serving), but the server cannot supply that portion. For example, If the client asked For a part Of the file that lies beyond the End Of the file.

field RFC_EXPECTATION_FAILED #
RFC_EXPECTATION_FAILED

417 Expectation Failed | The server cannot meet the requirements Of the Expect request-header field.

field RFC_IM_TEAPOT #
RFC_IM_TEAPOT

418 I'm a teapot (RFC 2324) | This code was defined In 1998 As one Of the traditional IETF April Fools' jokes, in RFC 2324, Hyper Text Coffee Pot Control Protocol, and is not expected to be implemented by actual HTTP servers. The RFC specifies this code should be returned by tea pots requested to brew coffee.

field RFC_AUTH_TIMEOUT #
RFC_AUTH_TIMEOUT

419 Authentication Timeout (Not in RFC 2616) | Not a part of the HTTP standard, 419 Authentication Timeout denotes that previously valid authentication has expired. It Is used as an alternative to 401 Unauthorized in order to differentiate from otherwise authenticated clients being denied access to specific server resources.[citation needed]

field RFC_METHOD_FAILURE #
RFC_METHOD_FAILURE

420 Method Failure (Spring Framework) | Not part of the HTTP standard, but defined by Spring in the HttpStatus class to be used when a method failed. This status code Is deprecated by Spring.

Remarks

420 Enhance Your Calm (Twitter) | Not part of the HTTP standard, but returned by version 1 of the Twitter Search And Trends API when the client Is being rate limited.[17] Other services may wish to implement the 429 Too Many Requests response code instead.

field RFC_MISDIRECTED_REQUEST #
RFC_MISDIRECTED_REQUEST

421 Misdirected Request (HTTP/2) | The request was directed at a server that Is Not able To produce a response (For example because a connection reuse).[18]

field RFC_UNPROCESSABLE_ENTITY #
RFC_UNPROCESSABLE_ENTITY

422 Unprocessable Entity (WebDAV; RFC 4918) | The request was well-formed but was unable To be followed due To semantic errors.[4]

field RFC_LOCKED #
RFC_LOCKED

423 Locked (WebDAV; RFC 4918) | The resource that Is being accessed Is locked.[4]

field RFC_FAILED_DEPENDENCY #
RFC_FAILED_DEPENDENCY

424 Failed Dependency (WebDAV; RFC 4918) | The request failed due To failure Of a previous request (e.g., a PROPPATCH).[4]

field RFC_UPGRADE_REQUIRED #
RFC_UPGRADE_REQUIRED

426 Upgrade Required | The client should switch To a different protocol such As TLS/1.0, given In the Upgrade header field.

field RFC_PRECONDITION_REQUIRED #
RFC_PRECONDITION_REQUIRED

428 Precondition Required (RFC 6585) | The origin server requires the request To be conditional. Intended To prevent "the 'lost update' problem, where a client GETs a resource's state, modifies it, and PUTs it back to the server, when meanwhile a third party has modified the state on the server, leading to a conflict."[19]

field RFC_TOO_MANY_REQUEST #
RFC_TOO_MANY_REQUEST

429 Too Many Requests (RFC 6585) | The user has sent too many requests In a given amount Of time. Intended For use With rate limiting schemes.[19]

field RFC_REQUEST_HEADER_FIELDS_TOO_LARGE #
RFC_REQUEST_HEADER_FIELDS_TOO_LARGE

431 Request Header Fields Too Large (RFC 6585) | The server Is unwilling To process the request because either an individual header field, Or all the header fields collectively, are too large.[19]

field RFC_LOGIN_TIMEOUT #
RFC_LOGIN_TIMEOUT

440 Login Timeout (Microsoft) | A Microsoft extension. Indicates that your session has expired.[20]

field RFC_NO_RESPONSE #
RFC_NO_RESPONSE

444 No Response (Nginx) | Used in Nginx logs to indicate that the server has returned no information to the client And closed the connection (useful as a deterrent for malware).

field RFC_RETRY_WITH #
RFC_RETRY_WITH

449 Retry With (Microsoft) | A Microsoft extension. The request should be retried after performing the appropriate action.[21]

field RFC_BLOCKED #
RFC_BLOCKED

450 Blocked by Windows Parental Controls (Microsoft) | A Microsoft extension. This Error Is given When Windows Parental Controls are turned On And are blocking access To the given webpage.[22]

field RFC_REQUEST_HEADER_TOO_LARGE #
RFC_REQUEST_HEADER_TOO_LARGE

494 Request Header Too Large (Nginx) | Nginx internal code similar To 431 but it was introduced earlier In version 0.9.4 (On January 21, 2011).[27][original research?]

field RFC_CERT_ERROR #
RFC_CERT_ERROR

495 Cert Error (Nginx) | Nginx internal code used When SSL client certificate Error occurred To distinguish it from 4XX In a log And an Error page redirection. (在SSL层解密的时候错误,则为证书错误)

field RFC_NO_CERT #
RFC_NO_CERT

496 No Cert (Nginx) | Nginx internal code used When client didn't provide certificate to distinguish it from 4XX in a log and an error page redirection.

field RFC_HTTP_TO_HTTPS #
RFC_HTTP_TO_HTTPS

497 HTTP to HTTPS (Nginx) | Nginx internal code used For the plain HTTP requests that are sent To HTTPS port To distinguish it from 4XX In a log And an Error page redirection.

field RFC_TOKEN_INVALID #
RFC_TOKEN_INVALID

498 Token expired/invalid (Esri) | Returned by ArcGIS For Server. A code Of 498 indicates an expired Or otherwise invalid token.[28] (错误的参数信息)

field RFC_CLOSED_REQUEST #
RFC_CLOSED_REQUEST

499 Client Closed Request (Nginx) | Used in Nginx logs to indicate when the connection has been closed by client while the server Is still processing its request, making server unable to send a status code back.[29]

Remarks

499 Token required (Esri) | Returned by ArcGIS For Server. A code Of 499 indicates that a token Is required (If no token was submitted).[28]

field RFC_INTERNAL_SERVER_ERROR #
RFC_INTERNAL_SERVER_ERROR

500 Internal Server Error | A generic Error message, given When an unexpected condition was encountered And no more specific message Is suitable.

field RFC_NOT_IMPLEMENTED #
RFC_NOT_IMPLEMENTED

501 Not Implemented | The server either does Not recognize the request method, Or it lacks the ability To fulfill the request. Usually this implies future availability (e.g., a New feature Of a web-service API).

field RFC_BAD_GATEWAY #
RFC_BAD_GATEWAY

502 Bad Gateway | The server was acting As a gateway Or proxy And received an invalid response from the upstream server.

field RFC_SERVICE_UNAVAILABLE #
RFC_SERVICE_UNAVAILABLE

503 Service Unavailable | The server Is currently unavailable (because it Is overloaded Or down For maintenance). Generally, this Is a temporary state.

field RFC_GATEWAY_TIMEOUT #
RFC_GATEWAY_TIMEOUT

504 Gateway Timeout | The server was acting As a gateway Or proxy And did Not receive a timely response from the upstream server.

field RFC_VERSION_NOT_SUPPORTED #
RFC_VERSION_NOT_SUPPORTED

505 HTTP Version Not Supported | The server does Not support the HTTP protocol version used In the request.

field RFC_NEGOTIATES #
RFC_NEGOTIATES

506 Variant Also Negotiates (RFC 2295) | Transparent content negotiation For the request results In a circular reference.[30]

field RFC_INSUFFICIENT_STORAGE #
RFC_INSUFFICIENT_STORAGE

507 Insufficient Storage (WebDAV; RFC 4918) | The server Is unable To store the representation needed To complete the request.[4]

field RFC_LOOP_DETECTED #
RFC_LOOP_DETECTED

508 Loop Detected (WebDAV; RFC 5842) | The server detected an infinite Loop While processing the request (sent In lieu Of 208 Already Reported).

field RFC_BANDWIDTH_LIMITED_EXCEEDED #
RFC_BANDWIDTH_LIMITED_EXCEEDED

509 Bandwidth Limit Exceeded (Apache bw/limited extension)[31] | This status code Is Not specified In any RFCs. Its use Is unknown.

field RFC_NOT_EXTENDED #
RFC_NOT_EXTENDED

510 Not Extended (RFC 2774) | Further extensions To the request are required For the server To fulfil it.[32]

field RFC_NETWORK_AUTH_REQUIRED #
RFC_NETWORK_AUTH_REQUIRED

511 Network Authentication Required (RFC 6585) | The client needs To authenticate To gain network access. Intended For use by intercepting proxies used To control access To the network (e.g., "captive portals" used To require agreement To Terms Of Service before granting full Internet access via a Wi-Fi hotspot).[19]

field RFC_UNKNOWN_ERROR #
RFC_UNKNOWN_ERROR

520 Unknown Error | This status code Is Not specified In any RFC And Is returned by certain services, For instance Microsoft Azure And CloudFlare servers: "The 520 error is essentially a “catch-all” response for when the origin server returns something unexpected or something that is not tolerated/interpreted (protocol violation or empty response)."[33]

field RFC_CONNECTION_TIMEOUT #
RFC_CONNECTION_TIMEOUT

522 Origin Connection Time-out | This status code Is Not specified In any RFCs, but Is used by CloudFlare's reverse proxies to signal that a server connection timed out.

field RFC_READ_TIMEOUT_ERROR #
RFC_READ_TIMEOUT_ERROR

598 Network read timeout error (Unknown) | This status code Is Not specified In any RFCs, but Is used by Microsoft HTTP proxies To signal a network read timeout behind the proxy To a client In front Of the proxy.[citation needed]

field RFC_CONNECT_TIMEOUT_ERROR #
RFC_CONNECT_TIMEOUT_ERROR

599 Network connect timeout error (Unknown) | This status code Is Not specified In any RFCs, but Is used by Microsoft HTTP proxies To signal a network connect timeout behind the proxy To a client In front Of the proxy.[citation needed]

field RFC_CONTINUTE overload 2 #
RFC_CONTINUTE
field RFC_SWITCHING_PROTOCOLS overload 2 #
RFC_SWITCHING_PROTOCOLS
field RFC_PROCESSING overload 2 #
RFC_PROCESSING
field RFC_OK overload 2 #
RFC_OK
field RFC_CREATED overload 2 #
RFC_CREATED
field RFC_ACCEPTED overload 2 #
RFC_ACCEPTED
field RFC_NON_AUTH_INFO overload 2 #
RFC_NON_AUTH_INFO
field RFC_NO_CONTENT overload 2 #
RFC_NO_CONTENT
field RFC_RESET_CONTENT overload 2 #
RFC_RESET_CONTENT
field RFC_PARTIAL_CONTENT overload 2 #
RFC_PARTIAL_CONTENT
field RFC_MULTI_STATUS overload 2 #
RFC_MULTI_STATUS
field RFC_ALREADY_REPORTED overload 2 #
RFC_ALREADY_REPORTED
field RFC_IM_USED overload 2 #
RFC_IM_USED
field RFC_MULTI_CHOICES overload 2 #
RFC_MULTI_CHOICES
field RFC_MOVED_PERMANENTLY overload 2 #
RFC_MOVED_PERMANENTLY
field RFC_FOUND overload 2 #
RFC_FOUND
field RFC_SEE_OTHER overload 2 #
RFC_SEE_OTHER
field RFC_NOT_MODIFIED overload 2 #
RFC_NOT_MODIFIED
field RFC_USE_PROXY overload 2 #
RFC_USE_PROXY
field RFC_SWITCH_PROXY overload 2 #
RFC_SWITCH_PROXY
field RFC_TEMP_REDIRECT overload 2 #
RFC_TEMP_REDIRECT
field RFC_PERMANENT_REDIRECT overload 2 #
RFC_PERMANENT_REDIRECT
field RFC_BAD_REQUEST overload 2 #
RFC_BAD_REQUEST
field RFC_UNAUTHORIZED overload 2 #
RFC_UNAUTHORIZED
field RFC_PAYMENT_REQUIRED overload 2 #
RFC_PAYMENT_REQUIRED
field RFC_FORBIDDEN overload 2 #
RFC_FORBIDDEN
field RFC_NOT_FOUND overload 2 #
RFC_NOT_FOUND
field RFC_METHOD_NOT_ALLOWED overload 2 #
RFC_METHOD_NOT_ALLOWED
field RFC_NOT_ACCEPTABLE overload 2 #
RFC_NOT_ACCEPTABLE
field RFC_PROXY_AUTH_REQUIRED overload 2 #
RFC_PROXY_AUTH_REQUIRED
field RFC_REQUEST_TIMEOUT overload 2 #
RFC_REQUEST_TIMEOUT
field RFC_CONFLICT overload 2 #
RFC_CONFLICT
field RFC_GONE overload 2 #
RFC_GONE
field RFC_LENGTH_REQUIRED overload 2 #
RFC_LENGTH_REQUIRED
field RFC_PRECONDITION_FAILED overload 2 #
RFC_PRECONDITION_FAILED
field RFC_PAYLOAD_TOO_LARGE overload 2 #
RFC_PAYLOAD_TOO_LARGE
field RFC_URI_TOO_LONG overload 2 #
RFC_URI_TOO_LONG
field RFC_UNSUPPORTED_MEDIA_TYPE overload 2 #
RFC_UNSUPPORTED_MEDIA_TYPE
field RFC_RANGE_NOT_SATISFIABLE overload 2 #
RFC_RANGE_NOT_SATISFIABLE
field RFC_EXPECTATION_FAILED overload 2 #
RFC_EXPECTATION_FAILED
field RFC_IM_TEAPOT overload 2 #
RFC_IM_TEAPOT
field RFC_AUTH_TIMEOUT overload 2 #
RFC_AUTH_TIMEOUT
field RFC_METHOD_FAILURE overload 2 #
RFC_METHOD_FAILURE
field RFC_MISDIRECTED_REQUEST overload 2 #
RFC_MISDIRECTED_REQUEST
field RFC_UNPROCESSABLE_ENTITY overload 2 #
RFC_UNPROCESSABLE_ENTITY
field RFC_LOCKED overload 2 #
RFC_LOCKED
field RFC_FAILED_DEPENDENCY overload 2 #
RFC_FAILED_DEPENDENCY
field RFC_UPGRADE_REQUIRED overload 2 #
RFC_UPGRADE_REQUIRED
field RFC_PRECONDITION_REQUIRED overload 2 #
RFC_PRECONDITION_REQUIRED
field RFC_TOO_MANY_REQUEST overload 2 #
RFC_TOO_MANY_REQUEST
field RFC_REQUEST_HEADER_FIELDS_TOO_LARGE overload 2 #
RFC_REQUEST_HEADER_FIELDS_TOO_LARGE
field RFC_LOGIN_TIMEOUT overload 2 #
RFC_LOGIN_TIMEOUT
field RFC_NO_RESPONSE overload 2 #
RFC_NO_RESPONSE
field RFC_RETRY_WITH overload 2 #
RFC_RETRY_WITH
field RFC_BLOCKED overload 2 #
RFC_BLOCKED
field RFC_REQUEST_HEADER_TOO_LARGE overload 2 #
RFC_REQUEST_HEADER_TOO_LARGE
field RFC_CERT_ERROR overload 2 #
RFC_CERT_ERROR
field RFC_NO_CERT overload 2 #
RFC_NO_CERT
field RFC_HTTP_TO_HTTPS overload 2 #
RFC_HTTP_TO_HTTPS
field RFC_TOKEN_INVALID overload 2 #
RFC_TOKEN_INVALID
field RFC_CLOSED_REQUEST overload 2 #
RFC_CLOSED_REQUEST
field RFC_INTERNAL_SERVER_ERROR overload 2 #
RFC_INTERNAL_SERVER_ERROR
field RFC_NOT_IMPLEMENTED overload 2 #
RFC_NOT_IMPLEMENTED
field RFC_BAD_GATEWAY overload 2 #
RFC_BAD_GATEWAY
field RFC_SERVICE_UNAVAILABLE overload 2 #
RFC_SERVICE_UNAVAILABLE
field RFC_GATEWAY_TIMEOUT overload 2 #
RFC_GATEWAY_TIMEOUT
field RFC_VERSION_NOT_SUPPORTED overload 2 #
RFC_VERSION_NOT_SUPPORTED
field RFC_NEGOTIATES overload 2 #
RFC_NEGOTIATES
field RFC_INSUFFICIENT_STORAGE overload 2 #
RFC_INSUFFICIENT_STORAGE
field RFC_LOOP_DETECTED overload 2 #
RFC_LOOP_DETECTED
field RFC_BANDWIDTH_LIMITED_EXCEEDED overload 2 #
RFC_BANDWIDTH_LIMITED_EXCEEDED
field RFC_NOT_EXTENDED overload 2 #
RFC_NOT_EXTENDED
field RFC_NETWORK_AUTH_REQUIRED overload 2 #
RFC_NETWORK_AUTH_REQUIRED
field RFC_UNKNOWN_ERROR overload 2 #
RFC_UNKNOWN_ERROR
field RFC_CONNECTION_TIMEOUT overload 2 #
RFC_CONNECTION_TIMEOUT
field RFC_READ_TIMEOUT_ERROR overload 2 #
RFC_READ_TIMEOUT_ERROR
field RFC_CONNECT_TIMEOUT_ERROR overload 2 #
RFC_CONNECT_TIMEOUT_ERROR