request接口上传附件

Posted 朱阿飞

tags:

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

 抓到页面请求可以看到这些,使用files,cookie省略,根据实际情况添加

import requests

url = "https://www.***.com/uploadExcel.json"

# => 打开上传文件并且加入文件相关参数
file = {
    \'excel\': open(r\'C:\\Users\\Administrator\\Desktop\\test.xls\', \'rb\'),
    \'Content-Disposition\': \'form-data\',
    \'Content-Type\': \'application/vnd.ms-excel\',
    \'filename\':\'test.xls\'
    }

response = requests.request("POST", url,files=file)

print(response.text)

 

以上是关于request接口上传附件的主要内容,如果未能解决你的问题,请参考以下文章

h5+带token附件上传:plus.uploader.createUpload

UEditor Golang上传图片与附件

jmeter 在一个新增接口中包含附件上传功能

python接口自动化测试二十四:上传多个附件,参数化

requests通过接口上传文件

带有上传文件附件的PHP电子邮件