From 790acf1fa9c0e7fec3d5aa2a9e290579b55c5374 Mon Sep 17 00:00:00 2001 From: XuqmGroup Date: Fri, 8 May 2026 18:31:59 +0800 Subject: [PATCH] =?UTF-8?q?docs(deploy):=20=E6=B7=BB=E5=8A=A0=E9=83=A8?= =?UTF-8?q?=E7=BD=B2=E6=96=87=E6=A1=A3=E5=92=8C=E5=AE=89=E5=85=A8=E8=AE=BE?= =?UTF-8?q?=E8=AE=A1=E8=A7=84=E8=8C=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 XuqmGroup 部署文档,包含部署方案、架构建议和部署步骤 - 添加安全设计规范,涵盖密码安全、AppSecret验证和服务端API认证 - 补充平台REST API规范,定义Server-to-Server调用接口和错误码 - 创建Java IM服务端SDK计划文档,规划Maven包发布和接口实现 --- __tests__/integration/e2e.node.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/integration/e2e.node.mjs b/__tests__/integration/e2e.node.mjs index 476b68a..7f5bc2f 100644 --- a/__tests__/integration/e2e.node.mjs +++ b/__tests__/integration/e2e.node.mjs @@ -72,7 +72,7 @@ async function login(userId, password = '123456') { const res = await fetch(`${DEMO_AUTH_URL}/login`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, - body: JSON.stringify({ appId: 'ak_demo_chat', userId, password }), + body: JSON.stringify({ appKey: 'ak_demo_chat', userId, password }), }) const json = await res.json() if (json.code !== 200) throw new Error(`Login failed: ${json.message}`)