简要描述:
请求URL:
https://api.chuangcache.com/content/delayPurge
请求方式:
请求参数:
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 密钥 |
urls | 是 | array | 刷新内容URLS列表,如:[{"url_name": "http://www.test.com/a.jpg"}, {"url_name": "http://www.test.com/css/a.css"}] |
delay | 否 | int | 延时刷新时(分钟级别),如不填写默认立刻刷新 |
is_precache | 否 | int | 是否预取,0不预取 1预取 |
请求示例
curl -i -X POST https://api.chuangcache.com/content/delayPurge -H "Accept: application/json" -H "Content-Type: application/json; charset=utf-8" -d '{"access_token": "ACCESS_TOKEN", "urls": [{"url_name": "http://www.test.com/a.jpg"}, {"url_name": "http://www.test1.com/css/a.css"}]}'
响应示例
{
"status": 1,
"info": "success",
"data": {
"task_id": "20170519021330d60ba1e8a1e29684603d2956586392f3",
"status": "待刷新",
"start_time": "1495174410"
}
}
返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
status | int | 接口返回码 |
info | string | 接口返回信息 |
data | object | 接口返回数据对象 |
data.task_id | string | 任务号 |
data.status | string | 状态 |
data.start_time | string | 任务开始时间 |