获取某用户一段时间内月维度的流量信息
更新时间:2017-2-23
接口描述
该接口用于获取某用户一段时间内月维度的流量信息。
请求地址
https://spark.bokecc.com/api/traffic/user/monthly
请求方式
GET
请求参数
以下请求参数需要进行THQS权限认证, 权限认证方式请参考THQS认证方式。
名称 |
类型 |
必填 |
描述 |
userid |
String |
是 |
用户ID。 |
start_month |
String |
是 |
查询开始日期(含),格式:yyyy-MM-dd。 |
end_month |
String |
是 |
查询结束日期(含),格式:yyyy-MM-dd。 |
请求示例
https://spark.bokecc.com/api/traffic/user/monthly?start_month=2016-08&time=1671611871054&end_month=2017-02&userid=CC443A6686737xxx&hash=E0D1590ADFEF9ACA029291A5A3310EDB
返回数据
名称 |
类型 |
说明 |
traffics |
Object |
流量。 |
traffics说明
名称 |
类型 |
说明 |
traffic |
Array |
流量信息。 |
traffic说明
名称 |
类型 |
说明 |
month |
String |
日期字符串,格式:yyyy-MM。 |
pc |
Long |
PC端流量,单位:B。 |
mobile |
Long |
移动端流量,单位:B。 |
返回示例
{
"traffics": {
"traffic": [
{
"month": "2016-08",
"pc": 123456,
"mobile": 12345
},
{
"month": "2016-09",
"pc": 798623,
"mobile": 678564
},
......
]
}
}