curl -d -F 发送了什么

说明

以上传文件为例(字符串也一样)
文件内容

测试文件内容

hello world

hex显示

0000000 e6 b5 8b e8 af 95 e6 96 87 e4 bb b6 e5 86 85 e5  >................<
0000020 ae b9 0a 00 0a 68 65 6c 6c 6f 20 77 6f 72 6c 64  >.....hello world<
0000040 0a                                               >.<
0000041

注意 0a 00 0a 有个 0x00

-F 就是 form-data

POST / HTTP/1.1
Host: 127.0.0.1:1080
User-Agent: curl/7.65.3
Accept: */*
Content-Length: 214
Content-Type: multipart/form-data; boundary=------------------------e812dfe8e8853e7f


--------------------------e812dfe8e8853e7f
Content-Disposition: form-data; name="file"; filename="a.txt"
Content-Type: text/plain

测试文件内容

hello world

--------------------------e812dfe8e8853e7f--

二进制数据

-d 系列 就是实打实的数据

后面将不会显示头信息,因为都一样,如果不一样会贴出来的

POST / HTTP/1.1
Host: 127.0.0.1:1080
User-Agent: curl/7.65.3
Accept: */*
Content-Length: 33
Content-Type: application/x-www-form-urlencoded

curl 参数

  • – data
测试文件内容hello world
  • – data-ascii

经测试和 --data 发送的数据一样

  • – data-binary

和名字一样,二进制数据

测试文件内容

hello world
  • – data-raw
@./a.txt

无法读取文件,只能发送字符串

  • – data-urlencode

这个和头信息中的 Content-Type 对应上了

%E6%B5%8B%E8%AF%95%E6%96%87%E4%BB%B6%E5%86%85%E5%AE%B9%0A%00%0Ahello%20world%0A

你可能感兴趣的:(http)