接口简介
- 读取app的每日安装量
接口请求说明
请求方式
GET https://站点接口域名/openapi/stats/new-users
请求参数
参数名 | 类型 | 是否必须 | 说明 |
---|---|---|---|
platform | string | ✅ | app系统平台,android/ios |
start_date | string | ✅ | 开始时间 |
end_date | string | ✅ | 结束时间 |
period_type | string | 日期类型类型(默认为日活) daily/weekly/monthly |
请求示例
# GET请求
curl -X GET 'https://站点接口域名/openapi/stats/new-users?platform=android&start_date=2020-10-01&end_date=2020-10-28&date=2020-10-28&period_type=daily' \
-H 'Authorization: Bearer 5d39164d1f281' \
-H 'Accept: application/json'
接口响应说明
响应示例
{
"code": 0,
"text": "",
"data": [
"chart_name": "2020-10-01 ~ 2020-10-28",
"data":[
"all":[1,2,3...]
],
"dates":["2020-10-01","2020-10-02","2020-10-03"...]
],
"time": 1545809695
}
响应结果说明
字段名 | 类型 | 说明 |
---|---|---|
chart_name | string | 所查询的时间区间 |
data.all | string | 安装量列表 |
dates | string | 日期列表 |
data.all 和 dates 是一一对应的
文档更新时间: 2020-10-29 15:25 作者:漫漫