注意:以下文档只适用于TOP接口,请谨慎使用!

文档中心 > API类目 > 自动驾驶内部API

alibaba.adlab.lmapcloud.keycenter.decryption (lmap-cloud应用提供的keycenter解密)

lmap-cloud应用提供的keycenter解密

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
connect_url String 必须 *** 数据库连接,用于校验
database_name String 必须 *** 数据库名字,用于校验
plaintext String 必须 *** 待解密的明文

响应参数

名称 类型 示例值 描述
response_data String *** 返回值
msg_info String SUCCESS 返回的调用信息
msg_code String null 返回的错误码

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAdlabLmapcloudKeycenterDecryptionRequest req = new AlibabaAdlabLmapcloudKeycenterDecryptionRequest();
req.setConnectUrl("***");
req.setDatabaseName("***");
req.setPlaintext("***");
AlibabaAdlabLmapcloudKeycenterDecryptionResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_adlab_lmapcloud_keycenter_decryption_response>
    <response_data>***</response_data>
    <msg_info>SUCCESS</msg_info>
    <msg_code>null</msg_code>
</alibaba_adlab_lmapcloud_keycenter_decryption_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

返回
顶部