本章節為您介紹了調用阿里云RTC API的返回結果。返回結果主要有XML和JSON兩種格式,默認為XML格式,您也可以指定請求參數Format變更返回結果的格式。
說明 為了便于您查看,本文返回示例進行了換行或縮進等格式處理。
正常返回示例
調用API返回2xx HTTP狀態碼代表調用成功。
XML示例如下所示。
<?xml version="1.0" encoding="UTF-8" ?> <!-結果的根結點--> <接口名稱+ Response> <!-返回請求標簽--> <RequestId>25818875-5F78-4A13-BEF6-D7393642CA58</RequestId> <!-返回結果數據--> </接口名稱+Response>
JSON示例如下所示。
{ "RequestId": "4C467B38-3910-447D-87BC-AC049166F216", /* 返回結果數據 */ }
異常返回示例
調用API返回4xx或者5xx HTTP狀態碼代表調用失敗,并返回RequestId、HostId、錯誤代碼和錯誤信息。
XML示例如下所示。
<?xml version="1.0" encoding="UTF-8"?> <Error> <RequestId>8906582E-6722-409A-A6C4-0E7863B733A5</RequestId> <HostId>rtc.aliyuncs.com</HostId> <Code>UnsupportedOperation</Code> <Message>The specified action is not supported.</Message> </Error>
JSON示例如下所示。
{ "RequestId": "8906582E-6722-409A-A6C4-0E7863B733A5", "HostId": "rtc.aliyuncs.com", "Code": "UnsupportedOperation", "Message": "The specified action is not supported." }