观众量统计
优质
小牛编辑
124浏览
2023-12-01
观众量统计
1、 获取用户维度下按小时统计的观众量,该接口仅提供某一天的数据查询。地址为:
a https://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
},
…
]
}
}
b: https://spark.bokecc.com/api/stats/uniquevisitor/user/hourly/v2
入参和接口a保持一致,返回值中unique_visitor包含字段和接口a有所不同,具体如下:
返回数据unique_visitor包含如下字段:
字段名 | 说明 |
---|---|
time | 表示小时的时间字符串,格式为yyyy-MM-dd HH:mm:ss |
total | 全终端观众量. |
flash | Flash端观众量 |
pc_h5 | H5-PC端观众量 |
android | Android端观众量 |
ios | iOS端观众量 |
mobile_h5 | H5-移动端观众量 |
JSON格式的返回信息如下:
{
"unique_visitors":{
“unique_visitor":[
{
"time":"2016-10-19 10:00:00”,
“total”: 70000,
"flash":10000,
“pc_h5”:20000,
“android":10000,
“ios":10000,
“mobile_h5":20000
},
…
]
}
}
2、 获取用户维度下按天统计的观众量,该接口提供多天的数据查询。地址为:
a. https://spark.bokecc.com/api/stats/uniquevisitor/user/daily
需要传递以下参数:
参数 | 说明 |
---|---|
userid | 用户id,不可为空 |
start_date | 查询开始日期(含),格式为yyyy-MM-dd,不可为空 |
end_date | 查询结束日期(含),日期不能大于今日,格式为yyyy-MM-dd,不可为空 注:end_date与start_date之间的差值最多为30 |
返回数据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
},
…
]
}
}
b: https://spark.bokecc.com/api/stats/uniquevisitor/user/daily/v2
入参和接口a保持一致,返回值中unique_visitor包含字段和接口a有所不同,具体如下:
返回数据unique_visitor包含如下字段:
字段名 | 说明 |
---|---|
date | 表示天的时间字符串,格式为yyyy-MM-dd |
total | 全终端观众量. |
flash | Flash端观众量 |
pc_h5 | H5-PC端观众量 |
android | Android端观众量 |
ios | iOS端观众量 |
mobile_h5 | H5-移动端观众量 |
JSON格式的返回信息如下:
{
"unique_visitors":{
“unique_visitor":[
{
"date":"2016-10-19”,
“total”: 70000,
"flash":10000,
“pc_h5”:20000,
“android":10000,
“ios":10000,
“mobile_h5”:20000
},
…
]
}
}