httpstatuses/contents/codes/501.md
WALL-E 62df9e637c Add Python status constants (#57)
* Add Python status constants

* Add Python 2, Python 3+, Python 3.5+ status constants
2016-05-22 00:07:16 +01:00

1.0 KiB

set code title references
5 501 Not Implemented
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
: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.