文档中心 > API类目 > 天眼工作室API

alibaba.security.deepvision.devicemanager.getlicense (获取设备License)

设备授权申请,以获取License

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
auth_key String 必须 1 授权key
uid String 必须 1 用户ID
client_info String 必须 1 设备信息
device_id String 必须 1 设备唯一编码

响应参数

名称 类型 示例值 描述
result Result 对象 接口返回model
  • └ msg
  • String
  • 成功
  • 返回描述
  • └ code
  • Number
  • 200
  • 返回码
  • data
  • LicenseInfoResp
  • 对象
  • 返回对象
  • └ license
  • String
  • Dsxkd983......
  • License

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaSecurityDeepvisionDevicemanagerGetlicenseRequest req = new AlibabaSecurityDeepvisionDevicemanagerGetlicenseRequest();
req.setAuthKey("1");
req.setUid("1");
req.setClientInfo("1");
req.setDeviceId("1");
AlibabaSecurityDeepvisionDevicemanagerGetlicenseResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_security_deepvision_devicemanager_getlicense_response>
    <result>
        <msg>成功</msg>
        <code>200</code>
        <data>
            <license>Dsxkd983......</license>
        </data>
    </result>
</alibaba_security_deepvision_devicemanager_getlicense_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部