0

我正在使用 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 Internal Server Error (API is 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')
    }
)
4

1 回答 1

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)
于 2018-10-09T18:41:52.330 回答