Found 0 result in total
Content is empty
If you don't find the content you expect, please try another search term
Last updated:2021-07-20 11:45:43
You can call this operation to obtain the top referers for specified domain names within a specified time period in a specified day. Up to 200 referers can be returned. Only referers from which more than 15 requests were initiated are included. The statistics data includes the number of requests and the traffic. You can sort the data by traffic or the number of requests.
The API request contains the specified directory /2020-06-30/statistics/GetTopReferData, common request headers, and operation-specific request parameters. For more information, see the sample request.
Parameter | Required | Type | Description |
---|---|---|---|
StartTime | Yes | String | The beginning of the time range to query. Specify the time in the ISO 8601 standard in the YYYY-MM-DDThh:mm+0800 format. The time must be in UTC+8. Example: 2016-08-01T21:14+0800. |
EndTime | Yes | String | The end of the time range to query. Specify the time in the ISO 8601 standard in the YYYY-MM-DDThh:mm+0800 format. The time must be in UTC+8. The end time must be later than the start time. Example: 2016-08-01T21:14+0800. |
CdnType | Yes | String | The business type. You can specify only one type at a time. Valid values: file, video, and page. |
Domains | No | String | The domain names to query. Separate multiple domain names with commas (,). By default, all domain names of the specified business type are queried. |
LimitN | No | Long | The maximum number of referers to return. Valid values: 1 to 200. Default value: 100. |
SortBy | No | String | Specifies how the data is sorted. Valid values: flow (sort by traffic) and pv (sort by the number of requests). Default value: pv. |
Parameter | Type | Description |
---|---|---|
StartTime | String | The beginning of the time range that is queried. |
EndTime | String | The end of the time range that is queried. |
CdnType | String | The business type. |
Domains | String | The domain names. |
LimitN | Long | The maximum number of referers to return. Valid values: 1 to 200. Default value: 100. |
RequestId | String | The ID of the request. A unique request ID is returned for each request. The request ID is required for troubleshooting. |
SortBy | String | Indicates how the data is sorted. |
Datas | ReferList[] | The top referers. |
Parameter | Type | Description |
---|---|---|
Refer | String | The referer. Only the domain name part is collected in the statistics. |
Rank | Long | The ranking of the referer. |
Pv | Long | The number of requests from the referer. |
PvProportion | Double | The percentage of requests from the referer in all requests in the specified time period. |
Flow | Long | The traffic from the referer. |
FlowProportion | Double | The percentage of traffic from the referer in all traffic in the specified time period. |
Sample request
GET method:
GET /2020-06-30/statistics/GetTopReferData?StartTime=2020-09-01T08%3a00%2b0800&EndTime=2020-09-01T08%3a05%2b0800&CdnType=video&LimitN=10&SortBy=flow
Host: cdn.api.ksyun.com
X-Amz-Date: date
Authorization:authorization string
x-action: GetTopReferData
x-version: 2020-06-30
POST method:
POST /2020-06-30/statistics/GetTopReferData
Host: cdn.api.ksyun.com
X-Amz-Date: date
Authorization:authorization string
x-action: GetTopReferData
x-version: 2020-06-30
Content-Type: application/json
{
"StartTime":"2020-09-01T08:00+0800",
"EndTime":"2020-09-01T08:05+0800",
"CdnType":"video",
"LimitN":10,
"SortBy":"flow"
}
Sample response
{
"StartTime": "2020-09-01T08:00+0800",
"EndTime": "2020-09-01T08:05+0800",
"CdnType": "video",
"Domains": "www.test.com",
"LimitN": 10,
"SortBy": "flow",
"Datas": [
{
"Refer": "-",
"Rank": 1,
"Pv": 398,
"PvProportion": 100.0,
"Flow": 283369,
"FlowProportion": 100.0003176070777
}
],
"RequestId": "0e1fa8c0-d8b5-4531-9424-72426dd3eddf"
}
Pure Mode