- 请求方式:POST
- 请求路径:/v1/refreshmanage/create
请求JSON参数
task_type | int | 刷新类型 | 是 | 刷新类型,必须,类型说明: 1. url2. 目录dir 3.正则匹配re |
values | list | 刷新参数值 | 是 | 刷新参数值,必须,数组格式;刷新类型为url时单次最多200条,类型为dir时单次最多50条。 |
task_type | int | 刷新类型 | 是 | 刷新类型,必须,类型说明: 1. url2. 目录dir 3.正则匹配re |
响应Json参数
task_id | string | 任务id | |
url | string | 刷新的URL | |
code | int | 状态码 | |
message | string | 描述信息 | |
result | list | 返回包含任务id的列表 | |
submit_id | string | 提交id |
task_id | string | 任务id |
示例
请求文档
{ "values": [ "http://xxx.com/xxx/xxx1.png", "http://xxx.com/xxx/xxx2.png", "http://xxx.com/xxx/xxx3.png" ], "task_type": 1 }
响应文档
{ "result": [ { "task_id": "xxxxxxxx", "url": "http://xxx.com/xxx1.png" } ], "code": 100000, "submit_id": "xxxxxxxxxx", "message": "success" }