Reputation: 1898
I am trying out the Hyperledger fabric Chaincode for Developers tutorial. The CLI chaincode commands to deploy and invoke the chaincode is working.
How can I enable the REST API as in the Fabric Documentation here or here. The link provided in the documentation https://github.com/hyperledger/fabric/blob/master/peer/core.yaml is not found currently.
Upvotes: 2
Views: 3365
Reputation: 41232
Starting from version 1.0.0 Hyperledger Fabric no longer expose REST API to interact the peers. Instead you have set of SDK which encapsulates interaction protocol allowing you to implement client logic which. At the moment you can take a look on following SDKs:
And documentation you are referring is from v0.6 which is no longer relevant, please use updated one here. The section of chaincode for developers might be very useful for your case.
Upvotes: 5