简要描述:
请求URL:
https://api.chuangcache.com/config/getPolicyInfo
请求方式:
请求参数:
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 密钥 |
domain_id | 是 | string | 加速域名ID |
请求示例
curl -i -X POST https://api.chuangcache.com/config/getPolicyInfo -H "Accept: application/json" -H "Content-Type: application/json; charset=utf-8" -d '{"access_token": "ACCESS_TOKEN", "domain_id": 2}'
响应示例
{
"status": 1,
"info": "success",
"data": {
"use_header_setting": "0",
"policy": [
{
"is_cache": 1,
"priority": "99",
"content": "css,html,png",
"policy_type": "suffix",
"policy_scheme": "http",
"time": "0年7日0时0分0秒"
},
{
"is_cache": 1,
"priority": "98",
"content": "/aaa/bbb/ccc/",
"policy_type": "prefix",
"policy_scheme": "https",
"time": "0年7日0时0分0秒"
},
{
"is_cache": 0,
"priority": "97",
"content": "css,png,jpg",
"policy_type": "suffix"
}
]
}
}
返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
status | int | 接口返回码 [ 0(操作失败)、1(操作成功)] |
info | string | 接口返回信息 [ 操作失败 / 操作成功 ] |
data | array | 接口返回数据列表 |
data.use_header_setting | int | 遵循源站 [ 0(关闭)、1(开启) ] |
data.policy | array | 缓存策略列表 |
policy.is_cache | int | 缓存开关 [ 0(不缓存)、1(缓存) ] |
policy.priority | string | 优先级,1-99,99优先级最高 |
policy.content | string | 缓存内容 |
policy.policy_type | string | 策略类型 [ prefix(目录)、suffix(后缀)、urlregex(正则匹配)] |
policy.policy_scheme | string | 协议 [ http、https ] |
policy.time | string | 缓存时间 |