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

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

设备授权申请,以获取License

公共参数

请求参数

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

响应参数

名称 类型 示例值 描述
message String 成功 返回描述
resp_code Number 200 返回码
result LicenseInfoResp 对象 返回对象
  • └ license
  • String
  • Dsxkd983......
  • License
resp_request_id String 1 请求唯一ID

请求示例

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

响应示例

  • XML示例
  • JSON示例
<alibaba_security_deepvision_proxy_devicemanager_getlicense_response>
    <message>成功</message>
    <resp_code>200</resp_code>
    <result>
        <license>Dsxkd983......</license>
    </result>
    <resp_request_id>1</resp_request_id>
</alibaba_security_deepvision_proxy_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

返回
顶部