httpstatuses/contents/codes/413.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

980 B

set code title references
4 413 Payload Too Large
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
:request_entity_too_large http.StatusRequestEntityTooLarge Response::HTTP_REQUEST_ENTITY_TOO_LARGE httplib.REQUEST_ENTITY_TOO_LARGE http.client.REQUEST_ENTITY_TOO_LARGE http.HTTPStatus.REQUEST_ENTITY_TOO_LARGE

The server is refusing to process a request because the request payload is larger than the server is willing or able to process.

The server MAY close the connection to prevent the client from continuing the request.

If the condition is temporary, the server SHOULD generate a Retry-After header field to indicate that it is temporary and after what time the client MAY try again.