調用DescribeFabricExplorer來瀏覽Fabric賬本相關的信息。

調試

您可以在OpenAPI Explorer中直接運行該接口,免去您計算簽名的困擾。運行成功后,OpenAPI Explorer可以自動生成SDK代碼示例。

請求參數

名稱 類型 是否必選 示例值 描述
Action String DescribeFabricExplorer

系統規定參數。取值:DescribeFabricExplorer

RegionId String cn-hangzhou

區域ID

OrganizationId String peers-test11-tzwny25vqicq

組織ID

ExMethod String GET

請求方法

ExUrl String /api/v1/channel

請求URL

ExBody String {}

請求體(注:保留使用)

返回數據

名稱 類型 示例值 描述
RequestId String 19E91C1D-9BD0-468F-A7DA-915263C6689F

請求ID

Result String {}

返回可轉換成JSON的字符串

Success Boolean true

返回狀態

ErrorCode Integer 200

返回代碼

DynamicMessage String An error in the monitoring service has occurred.

錯誤消息

DynamicCode String ExplorerException

錯誤代碼

示例

請求示例

# 獲取當前服務端支持API版本信息,從v2版本開始支持
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api&<公共請求參數>


# 獲取所有通道信息
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v1/channel&<公共請求參數>


# 獲取通道名為:channel的通道信息
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v1/channel/:channel&<公共請求參數>


# 獲取通道名為:channel的通道中block信息。limit表示最大獲取block數量,offset表示獲取的起始block,從0開始,可以為負整數
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v1/channel/:channel/block?limit=${limit}&offset=${offset}&<公共請求參數>


# 獲取通道名為:channel的通道中:block信息,:block為blockId或blockHash
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v1/channel/:channel/block/:block&<公共請求參數>


# 獲取通道名為:channel的通道中:tx信息
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v1/channel/:channel/tx/:tx&<公共請求參數>


# 獲取通道名為:channel的通道中的metric信息
# :precision為minute或hour,表示按分鐘或小時計算metric
# :type為block或tx,表示按block或tx計算metric
# ${left}和${right}表示獲取metric的時間區間,格式滿足js => new Date(${left | right})即可。
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v1/channel/:channel/metric/:precision/:type?left=${left}&right=${right}&<公共請求參數>


# 獲取當前通道的背書統計信息
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v2/channel/:channel/statistics/endorser&<公共請求參數>


# 獲取當前通道的鏈碼統計信息
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v2/channel/:channel/statistics/chaincode&<公共請求參數>


# 獲取當前通道中被驗證通過交易統計信息
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v2/channel/:channel/statistics/result&<公共請求參數>


# 獲取當前通道中交易發起用戶的統計信息
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v2/channel/:channel/statistics/creator&<公共請求參數>


# 獲取當前通道下鏈碼的背書統計信息
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v2/channel/:channel/statistics/chaincode/:chaincode/endorser&<公共請求參數>


# 獲取當前通道下鏈碼中被驗證通過交易統計信息
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v2/channel/:channel/statistics/chaincode/:chaincode/result&<公共請求參數>


# 獲取當前通道下鏈碼中交易發起用戶的統計信息
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v2/channel/:channel/statistics/chaincode/:chaincode/creator&<公共請求參數>


# 獲取當前通道下鏈碼的函數調用統計信息
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v2/channel/:channel/statistics/chaincode/:chaincode/function&<公共請求參數>


# 獲取當前通道下鏈碼的函數版本統計信息
http(s)://[Endpoint]/?Action=DescribeFabricExplorer&ExMethod=GET&ExUrl=/api/v2/channel/:channel/statistics/chaincode/:chaincode/version&<公共請求參數>

正常返回示例

XML格式

HTTP/1.1 200 OK
Content-Type:application/xml

<DescribeFabricExplorerResponse>
    <RequestId>AB2560A0-EF98-462D-B9BA-D422206B94B3</RequestId>
    <ErrorCode>200</ErrorCode>
    <Success>true</Success>
    <Result>{}</Result>
</DescribeFabricExplorerResponse>

JSON格式

HTTP/1.1 200 OK
Content-Type:application/json

{
  "RequestId" : "AB2560A0-EF98-462D-B9BA-D422206B94B3",
  "ErrorCode" : 200,
  "Success" : true,
  "Result" : "{}"
}

錯誤碼

訪問錯誤中心查看更多錯誤碼。