1 Answer
- Newest
- Most votes
- Most comments
1
The error message you received indicates that the request you made did not include a Content-Length header, which is required for HTTP/1.1 requests. Additionally, the Transfer-Encoding header is not set to chunked, which is another way to indicate the length of the content being sent.
To resolve this issue, you can try setting the Content-Length header explicitly in your request. If setting the Content-Length header does not resolve the issue, you can try setting the Transfer-Encoding header to chunked instead.
Relevant content
- asked 2 years ago
- asked 10 months ago
- AWS OFFICIALUpdated 7 months ago
