POST https://httpbin.org/post
Content-Type: multipart/form-data;boundary="HOGEHOGE"
--HOGEHOGE
Content-Disposition: form-data; name="field1"
value1
--HOGEHOGE
Content-Disposition: form-data; name="field2"; filename="example.txt"
value2
--HOGEHOGE--
結果:
HTTP/1.1 200 OK
Date: Tue, 20 Jun 2023 21:29:00 GMT
Content-Type: application/json
Content-Length: 493
Connection: close
Server: gunicorn/19.9.0
Access-Control-Allow-Origin: *
Access-Control-Allow-Credentials: true
{
"args": {},
"data": "",
"files": {
"field2": "value2"
},
"form": {
"field1": "value1"
},
"headers": {
"Accept-Encoding": "gzip, deflate",
"Content-Length": "174",
"Content-Type": "multipart/form-data;boundary=\"HOGEHOGE\"",
"Host": "httpbin.org",
"User-Agent": "vscode-restclient",
"X-Amzn-Trace-Id": "Root=1-64921a1c-3d90ffc007917d634b21b54d"
},
"json": null,
"origin": "106.72.201.193",
"url": "https://httpbin.org/post"
}
テストはここでできる。