- Admins
- AppSettings
- Blacklist
- ChatRecord
- CityLocation
- Goods
- HomeLocation
- Inventories
- ItemBlocks
- ItemIcons
- LandClaims
- Localization
- Locations
- Map
- Permissions
- Players
- PointsInfo
- Server
- TeleRecord
- Whitelist
- Settings
- AutoBackup
- CommandList
- ItemList
- VipGift
- PlayerSkills
- UiIcons
- Auth
- ColoredChat
- Prefab
分页获取历史玩家
GET
/api/HistoryPlayers
Players
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Query 参数
pageNumber
integer <int32>
页码
默认值:
1
pageSize
integer <int32>
可选
默认值:
10
keyword
string | null
搜索关键词
order
enum<string>
排序
枚举值:
PlayerNameLevelIsOfflineZombieKillsPlayerKillsDeathsSkillPointsLastLoginTotalTimePlayedLongestLifeEntityIdPointsCount
desc
boolean
是否降序
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://7dtdserver.local:8888/api/HistoryPlayers'
返回响应
🟢200成功
application/json
Body
可选
One of
One of
示例
{
"items": [
{
"playerId": "string",
"playerName": "string",
"entityId": -1,
"platformId": "string",
"isOffline": true,
"playerDetails": {
"isAdmin": true,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"lastSpawnPosition": {
"clrIdx": 0,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"heading": 0
},
"lastLogin": "2019-08-24T14:15:22Z",
"playerKills": 0,
"zombieKills": 0,
"deaths": 0,
"score": 0,
"stats": {
"health": 0,
"stamina": 0,
"coreTemp": 0,
"food": 0,
"water": 0
},
"level": 0,
"expToNextLevel": 0,
"skillPoints": 0,
"landProtectionActive": true,
"distanceWalked": 0,
"totalItemsCrafted": 0,
"longestLife": 0,
"currentLife": 0,
"totalTimePlayed": 0,
"rentedVMPosition": {
"x": 0,
"y": 0,
"z": 0
},
"rentalEndTime": 0,
"rentalEndDay": 0,
"spawnPoints": [
{
"x": 0,
"y": 0,
"z": 0
}
],
"alreadyCraftedList": [
"string"
],
"unlockedRecipeList": [
"string"
],
"favoriteRecipeList": [
"string"
],
"ownedEntities": [
{
"id": 0,
"classId": 0,
"lastKnownPosition": {
"x": 0,
"y": 0,
"z": 0
},
"hasLastKnownPosition": true
}
],
"pointsCount": 0
}
}
],
"total": 0
}
修改于 2024-12-09 01:52:42