mirror of
https://github.com/jie65535/gc-opencommand-plugin.git
synced 2025-12-08 18:41:34 +08:00
37dcd0f1a730fce01a2d296d80bb762ee1c569f7
gc-opencommand-plugin
中文 | English
一个为第三方客户端开放GC命令执行接口的插件
服务端安装
- 在 Release 下载
jar - 放入
plugins文件夹即可
注意,如果出现以下错误:
INFO:PluginManager Enabling plugin: opencommand-plugin Exception in thread "main" java.lang.NoSuchMethodError: 'void emu.grasscutter.server.event.EventHandler.register(emu.grasscutter.plugin.Plugin)' at com.github.jie65535.opencommand.OpenCommandPlugin.onEnable(OpenCommandPlugin.java:49) at emu.grasscutter.plugin.PluginManager.lambda$enablePlugins$3(PluginManager.java:131)请使用v1.2.1版本插件,因为该报错表示你的服务端是旧版!
控制台连接
- 首次启动时,会在
plugins目录下生成一个opencommand-plugin目录,打开并编辑config.json - 设置
consoleToken的值为你的连接秘钥,建议使用至少32字符的长随机字符串。 - 重新启动服务端即可生效配置
- 在客户端中选择控制台身份,并填写你的
consoleToken即可以控制台身份运行指令
构建说明
- 克隆仓库
- 在目录下新建
lib目录 - 将
grasscutter-1.1.x-dev.jar放入lib目录 gradle build
玩家使用流程
- 在客户端中填写服务地址,确认是否支持
- 填写UID,发送验证码
- 将游戏内收到的4位整数验证码填入客户端校验
- 享受便利!
客户端请求流程
ping确认是否支持opencommand插件sendCode向指定玩家发送验证码(1分钟内不允许重发),保存返回的token- 使用
token和4位整数验证码发送verify校验 - 如果验证通过,可以使用该
token执行command动作
config.json
{
// 控制台连接令牌
"consoleToken": "",
// 验证码过期时间(秒)
"codeExpirationTime_S": 60,
// 临时令牌过期时间(秒)
"tempTokenExpirationTime_S": 300,
// 授权令牌最后使用过期时间(小时)
"tokenLastUseExpirationTime_H": 48,
// 多服务器通信端口
"socketPort": 5746,
// 多服务器通信密钥
"socketToken": "",
// 多服务器Dispatch地址
"socketHost": "127.0.0.1"
}
API /opencommand/api
示例
https://127.0.0.1/opencommand/api
Request 请求
public final class JsonRequest {
public String token = "";
public String action = "";
public Object data = null;
}
Response 响应
public final class JsonResponse {
public int retcode = 200;
public String message = "success";
public Object data;
}
Actions 动作
测试连接
Request
| 请求参数 | 请求数据 | 类型 |
|---|---|---|
| action | ping |
String |
Response
| 返回参数 | 返回数据 | 类型 |
|---|---|---|
| retcode | 200 |
String |
| message | success |
String |
| data | null |
null |
发送验证码
Request
| 请求参数 | 请求数据 | 类型 |
|---|---|---|
| action | sendCode |
String |
| data | uid |
Int |
Response
| 返回参数 | 返回数据 | 类型 |
|---|---|---|
| retcode | 200 |
String |
| message | success |
String |
| data | token |
String |
验证验证码
Request
| 请求参数 | 请求数据 | 类型 |
|---|---|---|
| action | verify |
String |
| token | token |
String |
| data | code |
Int |
Response
成功
| 返回参数 | 返回数据 | 类型 |
|---|---|---|
| retcode | 200 |
String |
| message | success |
String |
| data | null |
null |
失败
| 返回参数 | 返回数据 | 类型 |
|---|---|---|
| retcode | 400 |
String |
| message | Verification failed |
String |
| data | null |
null |
执行命令
Request
| 请求参数 | 请求数据 | 类型 |
|---|---|---|
| action | command |
String |
| token | token |
String |
| data | command |
String |
Response
成功
| 返回参数 | 返回数据 | 类型 |
|---|---|---|
| retcode | 200 |
String |
| message | success |
String |
| data | Command return |
String |
Languages
Java
100%