I'm making the following call using the python requests library:
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')
}
)
However when I make a call I get a 500 Internal Server Error (API is this, in particular Peers / Install Chaincode). Given that a call I have earlier to one of the GET endpoints is working correctly I assume there is something wrong with my request, can anyone help?
UPDATE:
Solution was to remove the content-type
header and move the file upload into it's own files
argument:
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')
}
)
As acknowledged by the person asking the question, this answer by ralf htp seems to have solved their issue.