最近更新时间:2023-02-21 17:00:55
POST /GetDownloadUrls HTTP/1.1
Authorization: <AuthorizationString>
x-klog-api-version: 0.1.0
Host:klog.api.ksyun.com
x-klog-signature-method: hmac-sha1
Date: <GMT Date>
Content-Type: application/json
Content-MD5: <Content-MD5>
Content-Length: <ContentLength>
Connection: Keep-Alive
{
"DownloadID": "56129339-0650-4206-8e21-badc36cd657c",
"ProjectName": "projectname"
"Page": 0,
"Size": 50,
}
该接口无特有请求头。获取更多信息,请参见公共请求头
参数详情具体如下表。
参数名称 | 类型 | 是否必须 | 描述 |
---|---|---|---|
DownloadID | String | 是 | 任务下载ID,通过获取下载任务列表获取 |
ProjectName | String | 是 | 工程名称 |
Page | int64 | 是 | 页码 |
Size | int64 | 是 | 每页大小 |
参数名称 | 类型 | 描述 |
---|---|---|
Urls | array[Url] | 返回的Url,每个文件最大500M,超过按多条Url返回 |
Url参数说明如下:
参数名称 | 类型 | 描述 |
---|---|---|
From | int64 | 查询起始时间戳 |
To | int64 | 查询结束时间戳 |
Url | String | 日志Url,可下载 |
FileName | String | 文件名称 |
Status | String | 日志状态 |
Size | Float | 日志大小 |
SizeUnit | String | 日志大小单位 |
POST /ListDownloadTasks HTTP/1.1
Authorization: <AuthorizationString>
x-klog-api-version: 0.1.0
Host:klog.api.ksyun.com
x-klog-signature-method: hmac-sha1
Date: <GMT Date>
Content-Type: application/json
Content-MD5: <Content-MD5>
Content-Length: <ContentLength>
Connection: Keep-Alive
{
"DownloadID": "56129339-0650-4206-8e21-badc36cd657c",
"ProjectName": "projectname"
"Page": 0,
"Size": 50,
}
HTTP/1.1 200
Server: nginx
Content-Length: 0
Connection: close
Access-Control-Allow-Origin: *
Date: Sun, 27 May 2018 07:43:27 GMT
x-klog-requestid: 5B0A619F205DC3F30EDA9322
{
"Urls": [
{
"From": 1632702166000,
"To": 1632712166000,
"Url": "https://asdf/102a6b59-1632712166000.gz",
"FileName": "102a6b59-1632712166000.gz",
"Status": "done",
"Size": 1.1,
"SizeUnit": "GB"
}
]
}
纯净模式