设置http头控制

最新更新时间:2020.05.02

接口说明

请求URL:http://openapi.tropcdn.com/api/domain/setHttpHeader

请求方式:POST

请求参数

参数名 变量 类型 必填 描述
域名 domainName string
+是否启用 headers array(object)
参数名 变量 类型 必填 描述
类型 type string [origin: 节点到源站请求生效,response: 节点到源站响应生效]
http头 header string 可选值 ['Cache-Control', 'Expires', 'Content-Language','Content-Type', 'Access-ControlAllow-Origin', 'Access-Control-Allow-Methods', 'Access-Control-Max-Age', 'Access-Control-Expose-Headers']
http头对应的value value string
http头对应描述 desribe string

请求示例


{
    "domainName": "imgtest.exp***.com",
    "headers": [
        {
            "type": "origin",
            "header": "Content-Type",
            "value": "appliaciont/json",
            "describe": "dsfsdf"
        },
        {
            "type": "response",
            "header": "Content-Type",
            "value": "appliaciont/json",
            "describe": "dsfsdf"
        }
    ]
}
    
    

返回参数

参数名 变量 类型 必填 描述
状态码 code int(8) 业务状态码
示例值:正常为0
提示信息 message string 业务信息

返回示例


{
    "code": 0, # 《参照附录七》、《参照附录⼋》
    "message": "添加成功"
}