1
0
mirror of https://github.com/captn3m0/talks.git synced 2024-09-28 22:22:56 +00:00
talks/email-protocols/form-data.txt
2020-08-15 15:14:53 +05:30

32 lines
875 B
Plaintext

POST / HTTP/1.1
[[ Less interesting headers ... ]]
Content-Type: multipart/form-data; boundary=---------------------------boundary
Content-Length: 834
-----------------------------boundary
Content-Disposition: form-data; name="text1"
text default
-----------------------------boundary
Content-Disposition: form-data; name="text2"
aωb
-----------------------------boundary
Content-Disposition: form-data; name="file1"; filename="a.txt"
Content-Type: text/plain
Content-ID: <a@example.com>
Content of a.txt.
-----------------------------boundary
Content-Disposition: form-data; name="file2"; filename="a.html"
Content-Type: text/html
<!DOCTYPE html><title>Content of a.html.</title>
-----------------------------boundary
Content-Disposition: form-data; name="file3"; filename="binary"
Content-Type: application/octet-stream
aωb
-----------------------------boundary--