Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 873 Bytes

411.md

File metadata and controls

18 lines (12 loc) · 873 Bytes

Description

The HTTP 411 Length Required client error response code indicates that the server refuses to accept the request without a defined Content-Length header.

Note: by specification, when sending data in a series of chunks, the Content-Length header is omitted and at the beginning of each chunk you need to add the length of the current chunk in hexadecimal format. See Transfer-Encoding for more details.

See Also

Source: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/411