Transfer-Encoding - HTTP | MDN
Chunked transfer encoding - Wikipedia
HTTP Streaming (or Chunked vs Store & Forward)
Transfer-Encoding: chunked
가 있으면 Content-Length
가 생략됨
현재 청크의 길이(16진수)
\\r\\n
청크 자체
\\r\\n
0
http - Content Length와 Transfer Encoding
chunked
How to force http.client to send chunked-encoding HTTP body in python?
POST /test HTTP/1.1
Host: foo.example
Content-Type: multipart/form-data;boundary="boundary"
--boundary
Content-Disposition: form-data; name="field1"
value1
--boundary
Content-Disposition: form-data; name="field2"; filename="example.txt"
value2
--boundary--