Fiddler使用技巧:
http://www.doc88.com/p-3307506524682.html


Fiddler构造post请求,在请求header头里加上下面语句,提交的body才会被解析成键值对

Content-Type:application/x-www-form-urlencoded


Fiddler构造带文件上传的form表单提交:

完整示例:
---------------------------acebdf13572468(表单域aefFile的开头)
Content-Disposition: form-data; name="aefFile"; filename="2016-07-20 15_17_26.aef"
Content-Type: application/octet-stream(文件上传二进制流)
(此处有空行)
<@INCLUDE *C:\Users\Administrator\Desktop\2016-07-20 15_17_26.aef*@>
---------------------------acebdf13572468
Content-Disposition: form-data; name="phoneNumber"
Content-Type: text
(此处有空行)
15201468930
---------------------------acebdf13572468--(整个表单的结尾多了两个横线)

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2021-12-13
  • 2021-08-23
  • 2022-01-05
  • 2021-04-11
猜你喜欢
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2022-01-01
  • 2022-02-08
  • 2021-08-17
  • 2022-12-23
相关资源
相似解决方案