简要描述:
请求URL:
https://api.chuangcache.com/config/getDomainAdvanced
请求方式:
请求参数:
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 密钥 |
domain_id | 是 | string | 加速域名ID |
请求示例
curl -i -X POST https://api.chuangcache.com/config/getDomainAdvanced -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": {
"keep_url_params": "0",
"prefix_cache_first": "0",
"ssl_control": "0",
"redirect_follow": "0",
"page_compress": "0",
"range_back_source": "0",
"forbid_http_code": "302",
"forbid_redirect_url": "http://www.test.com",
"access_control_max_age": "1000",
"expires": "100"
}
}
返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
status | int | 接口返回码 [ 0(操作失败)、1(操作成功)] |
info | string | 接口返回信息 [ 操作失败 / 操作成功 ] |
data | object | 接口返回数据对象 |
data.keep_url_params | string | 过滤参数 [ 0(关闭)、1(开启)] |
data.prefix_cache_first | string | 目录缓存优先 [ 0(关闭)、1(开启)] |
data.ssl_control | string | ssl加速 [ 0(关闭)、1(开启)] |
data.redirect_follow | string | 跳转跟随 [ 0(关闭)、1(开启)] |
data.page_compress | string | 智能压缩加速 [ 0(关闭)、1(开启)] |
data.range_back_source | string | range回源 [ 0(关闭)、1(开启)] |
data.forbid_http_code | string | 自定义错误码 302/403 |
data.forbid_redirect_url | string | 302自定义跳转地址 |
data.access_control_max_age | string | 请求结果有效期 |
data.expires | string | 浏览器缓存有效期 |