简要描述:
请求URL:
https://api.chuangcache.com/config/getCertificateList
请求方式:
请求参数:
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 密钥 |
请求示例
curl -i -X POST https://api.chuangcache.com/config/getCertificateList
-H "Accept: application/json"
-H "Content-Type: application/json; charset=utf-8"
-d '{"access_token": "ACCESS_TOKEN"}'
响应示例
{
"status": 1,
"info": "success",
"data": [
{
"ssl_key": "xxxxxx",
"title": "test",
"issuer": "WoSign CA Free SSL Certificate G2",
"validfrom_time": 1438241070,
"validto_time": 1532935470,
"subjectaltname": "test.com,test1.com",
"status": "InUse",
"status_name": "使用中"
}
]
}
返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
status | int | 接口返回码 |
info | string | 接口返回信息 |
data | object | 接口返回数据对象 |
data.ssl_key | string | 证书唯一标识 |
data.title | string | 证书名称 |
data.issuer | string | 颁发机构 |
data.validfrom_time | int | 证书起始日期 |
data.validto_time | int | 证书结束日期 |
data.subjectaltname | string | 证书绑定的域名 |
data.status | string | 状态编码 |
data.status_name | string | 状态名称 |