本章节为您介绍了调用阿里云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."
    }