- 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/Locations/{entityId}
Locations
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Path 参数
entityId
integer <int32>
必需
示例代码
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/Locations/'
返回响应
🟢200成功
application/json
Body
实体信息
entityId
integer <int32>
实体Id
entityName
string
可选
entityType
实体类型
One of
枚举值:
OfflinePlayerOnlinePlayerZombieAnimalBanditHostiles
position
坐标
One of
x
integer <int32>
X
y
integer <int32>
Y
z
integer <int32>
Z
示例
{
"entityId": 0,
"entityName": "string",
"entityType": "OfflinePlayer",
"position": {
"x": 0,
"y": 0,
"z": 0
}
}
修改于 2024-12-09 01:52:42