使用Finddler抓取postman上传文件接口

当上传文本文件时,上传的请求头为:

POST http://192.168.1.160:9091/community/user/reg_login HTTP/1.1
Content-Type: multipart/form-data; boundary=--------------------------136686687911579135601425
User-Agent: PostmanRuntime/7.19.0
Accept: */*
Cache-Control: no-cache
Postman-Token: 80b64b46-015c-423b-a02e-46e1e8500f60
Host: 192.168.1.160:9091
Accept-Encoding: gzip, deflate
Content-Length: 375
Connection: keep-alive

----------------------------136686687911579135601425
Content-Disposition: form-data; name="ssss"; filename="文本名.txt"
Content-Type: text/plain

待实现的接口:
1、聊天数据的迁移、备份;包括什么传输时,可以让另外一个设备登录等等。

2、钱包模块;

3、收藏模块
----------------------------136686687911579135601425--

其中比较重要的是:
1、该请求把文件内容放到请求体中。
2、请求头Content-Type,其中boundary可以是用户指定,参考:https://stackoverflow.com/questions/3508338/what-is-the-boundary-in-multipart-form-data
3、请求体中Content-Disposition描述了文件信息,其中name是文件数据在url中是哪个参数。filename是文本的名字。

你可能感兴趣的:(使用Finddler抓取postman上传文件接口)