我想使用bitbucket的rest api创建一个提交。到目前为止,通过将标头中的Response 415
设置为Content-Type
,已经解决了有关application/json;charset-UTF8
的所有问题的答案。但是,这不能解决我得到的答复。
这就是我想要做的:
import requests
def commit_file(s, path, content, commit_message, branch, source_commit_id):
data = dict(content=content, message=commit_message, branch=branch, sourceCommitId=source_commit_id)
r = s.put(path, data=data, headers={'Content-type': 'application/json;charset=utf-8'})
return r.status_code
s = requests.Session()
s.auth = ('name', 'token')
url = 'https://example.com/api/1.0/projects/Project/repos/repo/browse/file.txt'
file = s.get(url)
r = commit_file(s, url, file.json() , 'Commit Message', 'test', '51e0f6faf64')
GET
请求成功返回了文件,我想将其内容提交到确实存在的分支test
上。
无论Content-Type
,响应的status_code
都是415
。
以下是放置请求的标头:
OrderedDict([('user-agent', ('User-Agent', 'python-requests/2.21.0')), ('accept-encoding', ('Accept-Encoding', 'gzip, deflate')), ('accept', ('Accept', '*/*')), ('connection', ('Connection', 'keep-alive')), ('content-type', ('Content-type', 'application/json;charset=utf-8')), ('content-length', ('Content-Length', '121')), ('authorization', ('Authorization', 'Basic YnVybWF4MDA6Tnp...NkJqWGp1a2JjQ3dNZzhHeGI='))])
This解释了curl的用法以及文件本地可用的时间。如上所示检索文件的内容时,正确的请求在python中会是什么样子?
这是使用MultipartEncoder
的解决方案:
import requests
import requests_toolbelt.multipart.encoder
def commit_file(s, path, content, commit_message, branch, source_commit_id):
data = requests_toolbelt.MultipartEncoder(
fields={
'content': content,
'message': commit_message,
'branch': branch,
'sourceCommitId': source_commit_id
}
)
r = s.put(path, data=data, headers={'Content-type': data.content_type})
答案 0 :(得分:1)
内容类型application/json;charset=utf-8
不正确。
根据文档,您必须发送多部分表单数据。您不能使用JSON。
该资源接受PUT多部分表单数据,该文件包含在名为
content
的表单字段中。
请参阅:How to send a "multipart/form-data" with requests in python?