HTTP Chunked Message를 알아보자

Transfer-Encoding - HTTP | MDN

Chunked transfer encoding - Wikipedia

HTTP Streaming (or Chunked vs Store & Forward)

http - Content Length와 Transfer Encoding

chunked request 보내는 방법 - curl

Chunked encoded POSTs

chunked

How to force http.client to send chunked-encoding HTTP body in python?

chunked request 예시 - multipart ??

HTTP multipart/form-data 이해하기

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--

Untitled