域名播放时长统计
优质
小牛编辑
126浏览
2023-12-01
域名播放时长统计
1、获取用户维度下按天统计的域名播放时长,该接口提供一天或多天的数据查询,返回为汇总结果。地址为:
a. https://spark.bokecc.com/api/stats/playduration/user/daily/domain
需要传递以下参数:
参数 | 说明 |
---|---|
userid | 用户id,不可为空 |
start_date | 查询开始日期(含),格式为yyyy-MM-dd,不可为空 |
end_date | 查询结束日期(含),日期不能大于今日,格式为yyyy-MM-dd,不可为空 注:end_date与start_date之间的差值最多为30 |
返回数据play_durations包含如下字段:
字段名 | 说明 |
---|---|
play_duration | 播放时长信息 |
play_duration包含如下字段:
字段名 | 说明 |
---|---|
domain | 播放域名 |
pc | PC端播放时长,单位秒 |
mobile | 移动端播放时长,单位秒 |
JSON格式的返回信息如下:
{
"play_durations":{
"play_duration":[
{
"domain":"app.tangdou.com",
"pc":1000000,
"mobile":700000
},
…
]
}
}
b. https://spark.bokecc.com/api/stats/playduration/user/daily/domain/v2
需要传递以下参数:
参数 | 说明 |
---|---|
userid | 用户id,不可为空 |
start_date | 查询开始日期(含),格式为yyyy-MM-dd,不可为空 |
end_date | 查询结束日期(含),日期不能大于今日,格式为yyyy-MM-dd,不可为空 注:end_date与start_date之间的差值最多为30 |
返回数据play_durations包含如下字段:
字段名 | 说明 |
---|---|
play_duration | 播放时长信息 |
play_duration包含如下字段:
字段名 | 说明 |
---|---|
domain | 播放域名 |
flash | Flash端播放时长,单位:秒。 |
pc_h5 | PC端播放时长,单位秒 |
android | Android端播放时长,单位:秒。 |
ios | iOS端播放时长,单位:秒。 |
mobile | H5-移动端播放时长,单位:秒。 |
JSON格式的返回信息如下:
{
"play_counts":{
"play_count":[
{
"domain":"app.tangdou.com",
“flash":10000,
“pc_h5”:10000,
“android":10000,
"ios":10000,
“mobile_h5”:7000
},
…
]
}
}
2、获取视频维度下按天统计的域名播放时长,该接口提供一天或多天的数据查询,返回为汇总结果。地址为:
a. https://spark.bokecc.com/api/stats/playduration/video/daily/domain
需要传递以下参数:
参数 | 说明 |
---|---|
userid | 用户id,不可为空 |
videoid | 视频id,不可为空 |
start_date | 查询开始日期(含),格式为yyyy-MM-dd,不可为空 |
end_date | 查询结束日期(含),日期不能大于今日,格式为yyyy-MM-dd,不可为空 注:end_date与start_date之间的差值最多为30 |
返回数据play_durations包含如下字段:
字段名 | 说明 |
---|---|
play_duration | 播放量信息 |
play_duration包含如下字段:
字段名 | 说明 |
---|---|
domain | 播放域名 |
pc | PC端播放时长,单位秒 |
mobile | 移动端播放时长,单位秒 |
JSON格式的返回信息如下:
{
"play_durations":{
"play_duration":[
{
"domain":"app.tangdou.com",
"pc":1000000,
"mobile":700000
},
…
]
}
}
b. https://spark.bokecc.com/api/stats/playduration/video/daily/domain/v2
需要传递以下参数:
参数 | 说明 |
---|---|
userid | 用户id,不可为空 |
videoid | 视频id,不可为空 |
start_date | 查询开始日期(含),格式为yyyy-MM-dd,不可为空 |
end_date | 查询结束日期(含),日期不能大于今日,格式为yyyy-MM-dd,不可为空 注:end_date与start_date之间的差值最多为30 |
返回数据play_durations包含如下字段:
字段名 | 说明 |
---|---|
play_duration | 播放量信息 |
play_duration包含如下字段:
字段名 | 说明 |
---|---|
domain | 播放域名 |
flash | Flash端播放时长,单位:秒。 |
pc_h5 | PC端播放时长,单位秒 |
android | Android端播放时长,单位:秒。 |
ios | iOS端播放时长,单位:秒。 |
mobile | H5-移动端播放时长,单位:秒。 |
JSON格式的返回信息如下:
{
"play_counts":{
"play_count":[
{
"domain":"app.tangdou.com",
“flash":10000,
“pc_h5”:10000,
“android":10000,
"ios":10000,
“mobile_h5”:7000
},
…
]
}
}