我正在尝试在 python 中运行 POST 请求。当我在 Postman 中测试时,它运行良好并导入文件。当我在 Python 中运行它时,我出错了。这会将存储在我计算机上的电子表格发布到 Quip。我收到错误缺少参数“文件”。我试过移动几件东西,但不确定我错过了什么。这是我的工作:
import requests
url = "https://platform.quip.com/1/threads/import-file"
payload = {'type': 'spreadsheet'}
files = [
('file', open('/Users/admin/Documents/excel/logs/Output/test.xlsx','rb'))
]
headers = {
'Content-Type': 'application/x-www-form-urlencoded',
'Authorization': 'Bearer **************************='
}
response = requests.request("POST", url, headers=headers, data = payload, files = files)
print(response.text.encode('utf8'))