获取用户维度下按小时统计的新增观众量
更新时间:2023-03-28
1. v3版本
接口描述
该接口用于获取用户维度下按小时统计的新增观众量数据,该版本接口返回结果中增加了微信小程序终端相关的数据内容。
请求地址
https://spark.bokecc.com/api/stats/newuniquevisitor/user/hourly/v3
请求方式
GET
请求参数
以下请求参数需要进行THQS权限认证, 权限认证方式请参考THQS认证方式。
名称 |
类型 |
必填 |
描述 |
userid |
String |
是 |
用户ID。 |
date |
String |
是 |
查询日期,日期不能大于今日,格式:yyyy-MM-dd。 |
请求示例
https://spark.bokecc.com/api/stats/newuniquevisitor/user/hourly/v3?date=2023-03-24&userid=xxx&time=1679991694390&hash=D2D995E37CB7A05708CBE06EC0C9AABF
返回数据
名称 |
类型 |
说明 |
new_unique_visitors |
Object |
新增观众量。 |
new_unique_visitors说明
名称 |
类型 |
说明 |
new_unique_visitor |
Array |
新增观众量信息。 |
new_unique_visitor说明
名称 |
类型 |
说明 |
time |
String |
表示小时的时间字符串,格式:yyyy-MM-dd HH:mm:ss。 |
total |
Long |
全终端新增观众量。 |
flash |
Long |
Flash端新增观众量。 |
pc_h5 |
Long |
H5-PC端新增观众量。 |
android |
Long |
Android端新增观众量。 |
ios |
Long |
iOS端新增观众量。 |
mobile_h5 |
Long |
H5-移动端新增观众量。 |
wechat |
Long |
微信小程序端新增观众量。 |
返回示例
{
"new_unique_visitors": {
"new_unique_visitor": [{
"time": "2023-03-24 11:00:00",
"total": 70000,
"flash": 10000,
"pc_h5": 10000,
"android": 10000,
"ios": 10000,
"mobile_h5": 20000,
"wechat": 10000
}]
}
}
2. v2版本
接口描述
该接口用于获取用户维度下按小时统计的新增观众量数据,该版本接口返回结果中详细区分了各播放器终端类型的数据。
请求地址
https://spark.bokecc.com/api/stats/newuniquevisitor/user/hourly/v2
请求方式
GET
请求参数
以下请求参数需要进行THQS权限认证, 权限认证方式请参考THQS认证方式。
名称 |
类型 |
必填 |
描述 |
userid |
String |
是 |
用户ID。 |
date |
String |
是 |
查询日期,日期不能大于今日,格式:yyyy-MM-dd。 |
请求示例
https://spark.bokecc.com/api/stats/newuniquevisitor/user/hourly/v2?date=2016-10-19&time=1671540943201&userid=CC443A6686737xxx&hash=D2B7B6F70EBC5AD4C4C39F7A1078A891
返回数据
名称 |
类型 |
说明 |
new_unique_visitors |
Object |
新增观众量。 |
new_unique_visitors说明
名称 |
类型 |
说明 |
new_unique_visitor |
Array |
新增观众量信息。 |
new_unique_visitor说明
名称 |
类型 |
说明 |
time |
String |
表示小时的时间字符串,格式:yyyy-MM-dd HH:mm:ss。 |
total |
Long |
全终端新增观众量。 |
flash |
Long |
Flash端新增观众量。 |
pc_h5 |
Long |
H5-PC端新增观众量。 |
android |
Long |
Android端新增观众量。 |
ios |
Long |
iOS端新增观众量。 |
mobile_h5 |
Long |
H5-移动端新增观众量。 |
返回示例
{
"new_unique_visitors": {
"new_unique_visitor": [{
"time": "2016-10-19 00:00:00",
"total": 70000,
"flash": 10000,
"pc_h5": 20000,
"android": 10000,
"ios": 10000,
"mobile_h5": 20000
}]
}
}
3. v1版本
接口描述
该接口用于获取用户维度下按小时统计的新增观众量数据,该版本接口返回结果中只区分了PC端和移动端的数据。
请求地址
https://spark.bokecc.com/api/stats/newuniquevisitor/user/hourly
请求方式
GET
请求参数
以下请求参数需要进行THQS权限认证, 权限认证方式请参考THQS认证方式。
名称 |
类型 |
必填 |
描述 |
userid |
String |
是 |
用户ID。 |
date |
String |
是 |
查询日期,日期不能大于今日,格式:yyyy-MM-dd。 |
请求示例
https://spark.bokecc.com/api/stats/newuniquevisitor/user/hourly?date=2016-10-19&time=1671540943201&userid=CC443A6686737xxx&hash=D2B7B6F70EBC5AD4C4C39F7A1078A891
返回数据
名称 |
类型 |
说明 |
new_unique_visitors |
Object |
新增观众量。 |
new_unique_visitors说明
名称 |
类型 |
说明 |
new_unique_visitor |
Array |
新增观众量信息。 |
new_unique_visitor说明
名称 |
类型 |
说明 |
time |
String |
表示小时的时间字符串,格式:yyyy-MM-dd HH:mm:ss。 |
total |
Long |
全终端新增观众量。 |
pc |
Long |
PC端新增观众量。 |
mobile |
Long |
移动端新增观众量。 |
返回示例
{
"new_unique_visitors": {
"new_unique_visitor": [{
"time": "2016-10-19 01:00:00",
"total": 40000,
"pc": 15000,
"mobile": 25000
}]
}
}