- 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
OAuth_Token
POST
/api/oauth/token
Auth
请求参数
Body 参数application/x-www-form-urlencoded
grant_type
string
必需
示例值:
password
username
string
可选
示例值:
admin
password
string
可选
示例值:
123456
refresh_token
string
可选
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://7dtdserver.local:8888/api/oauth/token' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'username=admin' \
--data-urlencode 'password=123456' \
--data-urlencode 'refresh_token='
返回响应
🟢200Authentication token and meta data.
application/json
Body
access_token
string
必需
token_type
string
必需
expires_in
integer <int32>
必需
refresh_token
string
可选
示例
{
"access_token": "string",
"token_type": "string",
"expires_in": 0,
"refresh_token": "string"
}
🟠400Authentication error.
修改于 2024-12-09 09:32:58