获取所有证书信息
/api/v1/certificate
GET
参数名 | 风格 | 类型 | 是否必须 | 示例 | 描述 |
---|---|---|---|---|---|
accesskey | 参数 | String | 是 | t9xuit3pt202ou09 | 用户accessKey |
timestamp | 参数 | String | 是 | 18223784 | 当前时间戳(从1970.1.1到此刻的毫秒数) |
{ "code": "0", "message": "success", "data": [ { "id": 1, "certificateName": "sdfad", "certificateCreateTime": "2016-01-06 11:19:17" }, { "id": 2, "certificateName": "sdfad", "certificateCreateTime": "2016-01-06 11:19:24" }, { "id": 3, "certificateName": "sdfada", "certificateCreateTime": "2016-01-06 11:19:48" } ] }
字段 | 类型 | 描述 |
---|---|---|
code | String | 响应状态码 |
message | String | 响应消息 |
data->id | Long | 证书ID |
data->certificateName | String | 证书的名字 |
data->certificateCreateTime | String | 证书的创建时间 |
添加证书
/api/v1/certificate
POST
参数名 | 风格 | 类型 | 是否必须 | 示例 | 描述 |
---|---|---|---|---|---|
accesskey | 参数 | String | 是 | t9xuit3pt202ou09 | 用户accessKey |
timestamp | 参数 | String | 是 | 18223784 | 当前时间戳(从1970.1.1到此刻的毫秒数) |
certificateName | 参数 | String | 是 | “test_name” | 证书名字 |
certificateContent | 参数 | String | 是 | “test_content” | 证书内容 |
privateKey | 参数 | String | 是 | “test_privateKey” | 证书私钥 |
{ "code": "0", "message": "success" }
字段 | 类型 | 描述 |
---|---|---|
code | String | 响应状态码 |
message | String | 响应消息 |
删除证书
/api/v1/certificate/{certificate_id
}
DELETE
参数名 | 风格 | 类型 | 是否必须 | 示例 | 描述 |
---|---|---|---|---|---|
certificate_id | 路径(不参与签名计算) | Long | 是 | 434 | 证书ID |
accesskey | 参数 | String | 是 | t9xuit3pt202ou09 | 用户accessKey |
timestamp | 参数 | String | 是 | 18223784 | 当前时间戳(从1970.1.1到此刻的毫秒数) |
{ "code": "0", "message": "success" }
字段 | 类型 | 描述 |
---|---|---|
code | String | 响应状态码 |
message | String | 响应消息 |