获取频道报表
请求header
GET /v1/activities/{频道id}/report
Authorization:Bearer {TOKEN}
Content-Type:application/json
注:
请将上方的{TOKEN}替换为您的TOKEN
请将"{频道id}"替换您需要获取的频道id
返回
{
"id": 1928,
"name": "测试",
"cost": 0,
"watch_seconds": 0,
"watch_times": 31,
"live_times": 31,
"vod_times": 0,
"watch_times_detail": {
"mobile": "31.00000",
"total": "31.00000",
"pc": "31.00000",
"海外": "31.00000",
"浙江": "31.00000" ...
},
"online_peak": "2.00000",
"comments_count": 2,
"publish_seconds": 0,
"online_detail": {
"201603172120": 2,
"201603172123": 2,
"201603172126": 1,
"201603172124": 1
},
"uv": 123,
"pv": 123,
"like_config": {
"id": 123,
"show_num": 0,
"is_open": 0,
"is_multiple": 0,
"multiple": 1,
"has_base": 0,
"base_like": 0,
"like_count": 0,
"act_id": 1061272,
"source": 1
}
}
返回参数说明
参数 | 描述 | 类型 |
---|---|---|
id | 频道id | integer |
name | 频道名称 | string |
cost | 频道消费金额 | float |
watch_seconds | 频道总观看时间(秒) | integer |
live_seconds | 直播观看时间(秒) | integer |
vod_seconds | 点播观看时间(秒) | integer |
watch_times | 直播观看次数 | integer |
watch_times_detail | 直播观看次数详情 | json array |
total | 直播观看次数 | float |
pc | 电脑端观看次数 | float |
mobile | 手机端观看次数 | float |
海外(或其他省市,如浙江,上海等) | 对应地区观看次数 | float |
online_peak | 人数观看峰值 | float |
comments_count | 频道评论总数 | integer |
publish_seconds | 直播总时长(秒) | integer |
online_detail | 在线人数详细信息 | json array |
201603172120 | 此时的在线人数 | integer |
uv | 频道UV | integer |
pv | 频道PV | integer |
like_config | 点赞配置信息 | object |
- id | 点赞配置ID | integer |
- show_num | 是否现实数值 0-关闭 1-开启 | integer |
- is_open | 点赞是否开启 | integer |
- is_multiple | 是否开启倍率,0-关闭 1-开启 | integer |
- multiple | 倍率 | integer |
- has_base | 是否开启基础点赞数 0-关闭 1-开启 | integer |
- base_like | 基础点赞数 | integer |
- like_count | 总点赞数 | integer |
- act_id | 频道ID | integer |
- source | 可忽略字段,始终返回1 | integer |