- API
- BanHistory 封禁历史
- ClientDiscovery 客户端发现
- Snapshot 快照记录
- UserApplication 用户应用程序
- User 用户
- Github OAuth2 登录GET
- BTN兼容客户端协议通讯
获取指定用户应用程序信息
开发中
GET
/api/userapp/{appId}
请求参数
Path 参数
appId
string
必需
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://btn-prod.ghostchu-services.top/api/userapp/'
返回响应
🟢200成功
application/json
Body
success
boolean
必需
message
null
必需
data
object (UserApplication)
必需
id
integer
记录ID
appId
string
AppId
comment
string
备注
createdAt
integer
创建时间
user
object (User)
所属用户
示例
{
"success": true,
"message": null,
"data": {
"id": 1,
"appId": "7355608",
"comment": "测试",
"createdAt": 1723916762000,
"user": {
"id": 1,
"avatar": "https://avatars.githubusercontent.com/u/30802565?v=4",
"nickname": "Ghost_chu",
"registerAt": 1723916701954,
"lastSeenAt": 1723974023732
}
}
}
修改于 2024-08-18 09:48:49