获取软件数据
POST
/myauth/web/getSoftStatisData请求参数
Header 参数
token
string
必需
登录成功后返回的token
示例值:
123
Body 参数application/json
二选一
id
integer
软件ID
skey
string
软件key
示例
{
"id": 16,
"skey": "12380b6e-56fc-41ac-953c-8b6896e26eb1"
}
示例代码
返回响应
成功(200)
错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
success
boolean
必需
msg
string
必需
sign
string
必需
result
object
必需
softName
string
软件名称
onlineCount
integer
在线用户数
allCount
integer
总用户数
nearly1
integer
1天内新增用户数
nearly7
integer
7天内新增用户数
nearly30
integer
30天内新增用户数
timestamp
integer
必需
示例成功示例
{
"code": 200,
"success": true,
"msg": "获取成功",
"sign": "",
"result": {
"softName": "MyQQ",
"onlineCount": 0,
"allCount": 200,
"nearly1": 0,
"nearly7": 0,
"nearly30": 100
},
"timestamp": 1647266922981
}
最后修改时间: 3 年前