我正在尝试使用requests模块重写一些旧的python代码。 目的是上传附件。 邮件服务器需要以下规范:
https://api.elasticemail.com/attachments/upload?username=yourusername&api_key=yourapikey&file=yourfilename
旧代码有效:
h = httplib2.Http()
resp, content = h.request('https://api.elasticemail.com/attachments/upload?username=omer&api_key=b01ad0ce&file=tmp.txt',
"PUT", body=file(filepath).read(),
headers={'content-type':'text/plain'} )
在请求中未找到如何使用正文部分。
我设法做了以下事情:
response = requests.put('https://api.elasticemail.com/attachments/upload',
data={"file":filepath},
auth=('omer', 'b01ad0ce')
)
但不知道如何使用文件内容指定正文部分。
感谢您的帮助。 奥马尔。
答案 0 :(得分:53)
从docs
引用数据 - (可选)要在请求正文中发送的字典或字节。
所以这个应该工作(未经测试):
filepath = 'yourfilename.txt'
with open(filepath) as fh:
mydata = fh.read()
response = requests.put('https://api.elasticemail.com/attachments/upload',
data=mydata,
auth=('omer', 'b01ad0ce'),
headers={'content-type':'text/plain'},
params={'file': filepath}
)
答案 1 :(得分:2)
我使用Python和它的请求模块使用了这个东西。有了这个,我们可以提供文件内容作为页面输入值。见下面的代码,
import json
import requests
url = 'https://Client.atlassian.net/wiki/rest/api/content/87440'
headers = {'Content-Type': "application/json", 'Accept': "application/json"}
f = open("file.html", "r")
html = f.read()
data={}
data['id'] = "87440"
data['type']="page"
data['title']="Data Page"
data['space']={"key":"AB"}
data['body'] = {"storage":{"representation":"storage"}}
data['version']={"number":4}
print(data)
data['body']['storage']['value'] = html
print(data)
res = requests.put(url, json=data, headers=headers, auth=('Username', 'Password'))
print(res.status_code)
print(res.raise_for_status())
随意询问您是否有任何疑问。
NB :在这种情况下,请求的正文将传递给json
kwarg。