我正在使用python请求库进行以下调用:
response = requests.post(
'https://blockchain-starter.eu-gb.bluemix.net/api/v1/networks/<network id>/chaincode/install',
headers={
'accept': 'application/json',
'content-type': 'multipart/form-data',
'authorization': 'Basic ' + b64encode(credential['key'] + ":" + credential['secret'])
},
data={
'chaincode_id': chaincode_id,
'chaincode_version': new_version,
'chaincode_type': chaincode_type,
'files': open('chaincode.zip', 'rb')
}
)
但是,当我拨打电话时,出现500内部服务器错误(API为this,尤其是Peers / Install Chaincode)。假设我之前对GET端点之一进行的呼叫正常运行,我认为我的请求有问题,有人可以帮忙吗?
更新:
解决方案是删除content-type
标头,然后将上传的文件移动到它自己的files
自变量中:
response = requests.post(
https://blockchain-starter.eu-gb.bluemix.net/api/v1/networks/<network id>/chaincode/install,
headers={
'accept': 'application/json',
'authorization': 'Basic ' + b64encode(credential['key'] + ":" + credential['secret'])
},
data={
'chaincode_id': chaincode_id,
'chaincode_version': new_version,
'chaincode_type': chaincode_language
},
files={
'file': open('chaincode_id.zip', 'rb')
}
)
答案 0 :(得分:1)
正如询问问题的人所承认的那样,ralf htp的回答似乎已经解决了他们的问题。
请勿自行设置Content-type标头,而是将其留给pyrequests生成
def send_request():
payload = {"param_1": "value_1", "param_2": "value_2"}
files = {
'json': (None, json.dumps(payload), 'application/json'),
'file': (os.path.basename(file), open(file, 'rb'), 'application/octet-stream')
}
r = requests.post(url, files=files)
print(r.content)