设置域名高级配置

简要描述:

请求URL:

请求方式:

请求参数:

参数名 必选 类型 说明
access_token string 密钥
domain_id string 加速域名ID
keep_url_params string 过滤参数开关,[ 0(关闭)、1(开启)]
prefix_cache_first string 目录缓存优先开关,[ 0(关闭)、1(开启)]
redirect_follow string 跳转跟随开关,[ 0(关闭)、1(开启)]
page_compress string 智能压缩加速开关,[ 0(关闭)、1(开启)]
range_back_source string RANGE回源开关,[ 0(关闭)、1(开启)]
expires int 请求结果有效期,最大时间为一年
access_control_max_age int 浏览器缓存有效期,最大时间为一年
forbid_http_code string 自定义错误码:302/403
forbid_redirect_url string 302转地址,当forbid_http_code为302,此参数是必须的
html_403 string 403错误提示内容,forbid_http_code为403,此参数是必须的

请求示例

curl -i -X POST https://api.chuangcache.com/config/setDomainAdvanced  -H "Accept: application/json" -H "Content-Type: application/json; charset=utf-8"  -d '{"access_token": "ACCESS_TOKEN", "domain_id": 2, "prefix_cache_first":0, "keep_url_params":0, "redirect_follow":0, "page_compress":0, "range_back_source":0, "expires":3600, "access_control_max_age":3600, "forbid_http_code":302, "forbid_redirect_url":"http://www.test.com"}'

响应示例

{
  "status": 1,
  "info": "操作成功",
  "data": true
}

返回参数说明

参数名 类型 说明
status int 接口返回码 [ 0(操作失败)、1(操作成功)]
info string 接口返回信息 [ 操作失败 / 操作成功 ]
data bool 接口返回数据 true成功 false失败