获取软件数据
POST
/myauth/web/getSoftStatisData
请求参数
Header 参数
token
string
必需
示例值:
123
Body 参数application/json
二选一
id
integer
软件ID
skey
string
软件key
示例
{
"id": 16,
"skey": "12380b6e-56fc-41ac-953c-8b6896e26eb1"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/myauth/web/getSoftStatisData' \
--header 'token: 123' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": 16,
"skey": "12380b6e-56fc-41ac-953c-8b6896e26eb1"
}'
返回响应
🟢200成功
application/json
Body
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
}
🔴500错误
修改于 2022-03-14 16:42:00