diff --git a/src/services/nakamaAuth.ts b/src/services/nakamaAuth.ts index 8b6b857..ffe71ff 100644 --- a/src/services/nakamaAuth.ts +++ b/src/services/nakamaAuth.ts @@ -42,7 +42,7 @@ class NakamaAuthService { private readonly SERVER_KEY = 'defaultkey'; // 替换为实际的服务器密钥 private readonly HOST = '43.143.58.201'; // 替换为实际的Nakama服务器地址 private readonly PORT = '7350'; // 替换为实际的端口 - private readonly USE_SSL = true; // 根据实际情况设置 + private readonly USE_SSL = false; // 根据实际情况设置 constructor() { this.client = new Client(this.SERVER_KEY, this.HOST, this.PORT, this.USE_SSL);