如何从 Azure 区块链服务获取私钥?
How can I obtain private key from Azure Blockchain Service?
我不确定如何从 Azure 区块链服务获取私钥。
我想在 Logic App 上使用 Etherium 连接器。没有私钥,流程将失败。
报错信息如下;
{
"status": 400,
"message": "No private key was found in the connection object\r\nclientRequestId: f85XXXXXXXX-XXXXXXXXXXXXXX-XXXXXXXXbfea",
"source": "blockchainethereum-je.azconn-je.p.azurewebsites.net"
}
请告诉我在哪里可以找到这些信息,"Ethereum RPC Endpoint"、"Private Key"、"Account Address" 和 "Account Password"。
检查connection description,你会发现它支持两种交易签名:私钥和On-node签名.
关于如何获取密钥的详细信息,您可以参考这个教程:Configure Azure Blockchain Service transaction nodes。转到您的 Azure Blockchain Service
下的 Transaction nodes
,单击您要使用的节点,您将获得详细信息。
我不确定如何从 Azure 区块链服务获取私钥。
我想在 Logic App 上使用 Etherium 连接器。没有私钥,流程将失败。
报错信息如下; { "status": 400, "message": "No private key was found in the connection object\r\nclientRequestId: f85XXXXXXXX-XXXXXXXXXXXXXX-XXXXXXXXbfea", "source": "blockchainethereum-je.azconn-je.p.azurewebsites.net" }
请告诉我在哪里可以找到这些信息,"Ethereum RPC Endpoint"、"Private Key"、"Account Address" 和 "Account Password"。
检查connection description,你会发现它支持两种交易签名:私钥和On-node签名.
关于如何获取密钥的详细信息,您可以参考这个教程:Configure Azure Blockchain Service transaction nodes。转到您的 Azure Blockchain Service
下的 Transaction nodes
,单击您要使用的节点,您将获得详细信息。