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接口上传附件的主要内容,如果未能解决你的问题,请参考以下文章