postman带文件的请求

Posted hungry & foolish

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postman带文件的请求相关的知识,希望对你有一定的参考价值。

背景

python代码中使用post方法请求接口,并传了二进制的文件,如何将其改造成postman请求

python的函数请求方法如下

url = http://10.10.121.12:8080/xxx
data_dict = {\'data\': \'{"a": 1, "b": "[{\\\\"key\\\\":1}]"}\'} # python的dict形式
uploadFile = {\'uploadFile\': open(upload_file_path, \'rb\')}
response = request.post(url, data=data_dict, files=uploadFile)

 

postman填写

 

 

参考

1. https://www.cnpython.com/qa/348061

以上是关于postman带文件的请求的主要内容,如果未能解决你的问题,请参考以下文章

postman 自动生成 curl 代码片段

postman 自动生成 curl 代码片段

Postman带Cookie 请求post接口

利用postman进行接口测试并发送带cookie请求的方法

postman 基本用法

Java生成二进制文件与Postman以二进制流的形式发送请求