简要描述:
请求URL:
https://api.chuangcache.com/content/precache
请求方式:
请求参数:
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 密钥 |
urls | 是 | array | URL列表,如:[{"url_name": "http://www.test.com/a.jpg"}, {"url_name": "http://www.test.com/css/b.css"}] ,单次最多提交 200 条URL |
请求示例
curl -i -X POST https://api.chuangcache.com/content/precache -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.test.com/css/b.css"}]}'
响应示例
{
"status": 1,
"info": "操作成功",
"data": [
{
"task_id": "e9ee983f4964a83f961c17d47aee90af",
"url_name": "http://www.test.com/a.jpg",
"status": "InProgress",
"start_time": 1535335971
},
{
"task_id": "e9ee983f4964a83f961c17d47aee90af",
"url_name": "http://www.test.com/b.css",
"status": "InProgress",
"start_time": 1535335971
}
]
}
返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
status | int | 接口返回码 [ 0(操作失败)、1(操作成功)] |
info | string | 接口返回信息 [ 操作失败 / 操作成功 ] |
data | object | 接口返回数据对象 |
data.task_id | string | 任务ID |
data.url_name | string | URL |
data.status | string | 状态 |
data.createtime | int | 创建时间 |