https://github.com/hyperledger/fabric-ca/blob/release-1.2/swagger/swagger-fabric-ca.json
使用上面的链接作为参考,我成功使用了 cainfo 方法(使用 localhost:7054/api /v1/cainfo)。但是,对于需要身份验证标头的其他方法(例如从属关系(get)),我失败了(该方法说需要用句点分隔的 2 个 base 64 编码密钥)。我的问题是实际需要哪些密钥(管理员证书和私钥/签名?)以及我是否应该对它们都进行编码(编码通过https://www.base64encode.org/完成)
注意:- 这是预期的
{
"name": "Authorization",
"in": "header",
"description": "An HTTP basic authorization header where: \n* *user* is the enrollment ID; \n* *password* is the enrollment secret.",
"required": true,
"type": "string"
},