观众量统计
- 获取用户维度下按小时统计的观众量,该接口仅提供某一天的数据查询。
地址为:http://spark.bokecc.com/api/stats/uniquevisitor/user/hourly
需要传递以下参数:
参数 | 说明 |
---|---|
userid | 用户id,不可为空 |
date | 查询日期,格式为yyyy-MM-dd,不可为空 |
返回数据unique_visitors包含如下字段:
字段名 | 说明 |
---|---|
unique_visitor | 观众量信息 |
unique_visitor包含如下字段:
字段名 | 说明 |
---|---|
time | 表示小时的整点时间 |
total | 总观众量 |
pc | PC端观众量 |
mobile | 移动端观众量 |
JSON格式的返回信息如下:
{
"unique_visitors":{
"unique_visitor":[
{
"time":"2016-10-19 10:00:00",
"total":29999,
"pc":10000,
"mobile":20000
},
…
]
}
}
- 获取用户维度下按天统计的观众量,该接口提供多天的数据查询。
地址为:http://spark.bokecc.com/api/stats/uniquevisitor/user/daily
需要传递以下参数:
参数 | 说明 |
---|---|
userid | 用户id,不可为空 |
start_date | 查询开始日期(含),格式为yyyy-MM-dd,不可为空 |
end_date | 查询结束日期(含),格式为yyyy-MM-dd,不可为空 |
返回数据unique_visitors包含如下字段:
字段名 | 说明 |
---|---|
unique_visitor | 观众量信息 |
unique_visitor包含如下字段:
字段名 | 说明 |
---|---|
date | 表示天的日期时间 |
total | 总观众量 |
pc | PC端观众量 |
mobile | 移动端观众量 |
JSON格式的返回信息如下:
{
"unique_visitors":{
"unique_visitor":[
{
"date":"2016-10-19",
"total":29999,
"pc":10000,
"mobile":20000
},
…
]
}
}