文档中心 API文档 查看证书文件内容

查看证书文件内容

更新时间:2023-04-12 17:26:57

适用产品

证书管理

接口描述

查看证书文件内容

推荐使用 Open API在线调试

Open API在线调试功能提供可视化界面在线调试API、支持生成代码示例、快速检索查看API文档等能力。前往调试

请求参数

Path 参数

参数名称类型必填描述
certificateId
Integer需要查询的证书id

返回参数

Body 参数

参数名称类型描述
code
Integer接口响应code,0代表成功。
message
String接口响应信息,success代表成功,失败则提供失败信息。
data
QueryCertificateContentResponseData接口响应数据
certificateId
Integer证书ID
certificate
String证书内容,PEM格式

示例

JSON示例
XML示例
JSON示例
请求示例
复制代码 复制成功
#!/bin/bash
username="example_username"
apiKey="example_apiKey"
date=`env LANG="en_US.UTF-8" date -u "+%a, %d %b %Y %H:%M:%S GMT"`
password=`echo -en "$date" | openssl dgst -sha1 -hmac $apiKey -binary | openssl enc -base64`
curl -i --url "https://open.chinanetcenter.com/api/certificate/{certificateId}/content" \
-X "GET" \
-u "$username:$password" \
-H "Date: $date" \
-H "Accept: application/json" \
-H "Content-Type:application/json"
返回示例
复制代码 复制成功
HTTP/1.1 200 OK
Date: Sun, 05 May 2019 09:08:53 GMT
Content-Type: application/json;charset=utf-8
x-cnc-request-id: 83bbebc7-2c95-47d7
{"code":"0",
"message":"success",
"data":{"certificateId";123456,
        "certificate":"-----BEGIN CERTIFICATE-----……-----END CERTIFICATE-----"
        }
}
本篇文档内容对您是否有帮助?
有帮助
我要反馈
提交成功!非常感谢您的反馈,我们会继续努力做到更好!