QueryDomainLogDownloadAddress

Update time: 2024-07-24 14:39:07

Report Log Multi-Domain Service Interface description Query the log download address of multiple domains. The default granularity of log file is 24 hours and data are returned according to the actual configurations. Around 30 min~1 hours of data delay

  • Data latency: 30min~1h
  • Single user trigger frequency: 300/5min
  • Applicable Products: Log Download

Request

Params Params

NameDescription
*dateFromString
Start time: 1.The format is yyyy-MM-ddTHH:mm:ss+08:00 ; 2.Must be smaller than the current time and dateTo ; 3.Period between dataFrom and dateTo cannot be longer than 31 days .
*dateToString
End time, format is yyyy-MM-ddTHH:mm:ss+08:00(The actual range of logs that can be queried depends on the number of days of log retention configured by the domain name).
logTypeString
Log type, optional values:cdn,bot,ddos; Multiple are separated by English commas. If they are not transmitted, the data will be queried by logtype = cdn,bot by default.

Body Params

NameDescription
*domain-listObject
*domain-nameList
The default upper limit of the number of domain names is 20 (you can contact technical support for adjustment), The maximum recommended cap is 500

Response

Body Params

NameDescription
logsList
domainString
Domain
areaCodeString
areaCode
filesList
dateFromString
The start time of log file, format is yyyy-MM-dd-HHmm
dateToString
The end time of log file, format is yyyy-MM-dd-HHmm
logUrlString
Download address of log file (Link valid for 24 hours)
fileSizeInteger
Size of log file

Error code

Error code(code)Description(message)HTTP statusSemantic
NotAcceptableThe accept header specified in your request is not acceptable.400Accept request header not supported, API supports json and xml format only, default is json format
MalformedXMLThe XML you provided was not well-formed or did not validate against our published schema.400Request body XML format error
DomainNameIsRequiredThe domain name is required.400Requrest body is specified and domain array is empty
DomainsExcessiveThe number of domain is excessive once.403Number of queried domains exceeds limits set to the account
NoSuchDomainThe specified domain does not exist.404Domain does not exist, or does not belong to the current account that calls the interface
InvalidDatePeriodThe date specified is invalid.400Date from or dateto does not conform to the specification
DateSpanErrorYou cannot specify a period greater than 31.400Datefrom and dateto differ by more than 31 days
ReportErrorreport error.400System error ( log group interface response error and error code not 200 and 404) (no longer available, to be deleted)
InternalErrorWe encountered an internal error. Please try again.500System error
PARAM_INVALIDparam: fileMd5 is null or invalid.400The parameter fileMd5 does not conform to specification

Example

JSON
XML
JSON
Request example
Copy Copy success
#!/bin/bash
# Please remember to change the param (-H "X-Time-Zone") in this demo to the TimeZone you want in response

#!/bin/bash
username="example_username"
apiKey="example_apiKey"
date=`env LANG="en_US.UTF-8" date -u "+%a, %d %b %Y %H:%M:%S GMT"`
password=`echo -en "$date" | openssl dgst -sha1 -hmac $apiKey -binary | openssl enc -base64`
curl -i --url "https://api.cdnetworks.com/api/report/log/downloadLink?datefrom=2017-06-14T00:00:00%2B08:00&dateto=2017-06-17T00:00:00%2B08:00&logtype=cdn" \
-X "POST" \
-u "$username:$password" \
-H "Date: $date" \
-H "Accept: application/json" \
-d '{
    "domain-list": {
        "domain-name": ["www.example1.com","www.example2.com"]
    }
}'
Response example
Copy Copy success
{
      "logs": [
          {
              "domainName":   "www.example1.com",
              "files": [
                  {
                        "dateFrom": "2017-06-14-0000",
                      "dateTo":   "2017-06-14-2359",
                      "logUrl":   "http://dx.wslog.chinanetcenter.com/log/c/www.example1.com/2017-06-14-0000-2330_www.example1.com.cn.log.gz?wskey=00c6ae5d3570005382bc74485900f4edac8d5f00152a",
                      "fileSize": 17397875
                        
                  },
                  {
                        "dateFrom": "2017-06-16-0000",
                      "dateTo":   "2017-06-16-2359",
                      "logUrl":   "http://dx.wslog.chinanetcenter.com/log/c/www.example1.com/2017-06-16-0000-2330_www.example1.com.cn.log.gz?wskey=00c65bc688020053c99ef01a59008f8234e55f00983e",
                        "fileSize": 10570627
                        
                  }
              ]
          }
      ]
  }
Is the content of this document helpful to you?
Yes
I have suggestion
Submitted successfully! Thank you very much for your feedback, we will continue to strive to do better!