数据统计
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>用户数据统计接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>users/index</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;ok!&quot;,
&quot;data&quot;: {
&quot;user&quot;: {
&quot;sum&quot;: 23, // 总用户数
&quot;reality_sum&quot;: 23, // 实际用户数
&quot;today_count&quot;: 1, // 今日新增
&quot;yesterday_count&quot;: 0, // 昨日新增
&quot;week_count&quot;: 2, // 本周
&quot;lastweek_count&quot;: 7, // 上周
&quot;month_count&quot;: 10, // 本月
&quot;lastmonth_count&quot;: 0 // 上月
},
&quot;user_add_list&quot;: [ // 今年内月用户增长数
{
&quot;create_time&quot;: &quot;2025-01&quot;,
&quot;count&quot;: 0
},
{
&quot;create_time&quot;: &quot;2025-02&quot;,
&quot;count&quot;: 0
},
{
&quot;create_time&quot;: &quot;2025-03&quot;,
&quot;count&quot;: 10
}
]
}
}
```php
用户活跃数据
users/user_active_data
{
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;ok!&quot;,
&quot;data&quot;: {
&quot;today_count&quot;: 4, // 今日活跃数
&quot;week_count&quot;: 5, // 本周
&quot;lastweek_count&quot;: 13, // 上周
&quot;month_count&quot;: 16, // 本月
&quot;lastmonth_count&quot;: 0, // 上月
&quot;year_count&quot;: 21, // 本年
&quot;lastyear_count&quot;: 1 // 去年
}
}
用户活跃折线图
https://www.showdoc.com.cn/1885082337263229/8645717476524879</code></pre>
<pre><code>
##### 返回参数说明
|参数名|类型|说明|
|:----- |:-----|----- |
##### 备注
- 更多返回错误代码请看首页的错误代码描述</code></pre>