Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.17 KB

File metadata and controls

28 lines (22 loc) · 1.17 KB
set code title references
5
501
Not Implemented
.NET HTTP Status Enum Rust HTTP Status Constant 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
HttpStatusCode.NotImplemented
http::StatusCode::NOT_IMPLEMENTED
:not_implemented
http.StatusNotImplemented
Response::HTTP_NOT_IMPLEMENTED
httplib.NOT_IMPLEMENTED
http.client.NOT_IMPLEMENTED
http.HTTPStatus.NOT_IMPLEMENTED

The server does not support the functionality required to fulfill the request.

This is the appropriate response when the server does not recognize the request method and is not capable of supporting it for any resource.

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