docs(deploy): 添加部署文档和安全设计规范
- 新增 XuqmGroup 部署文档,包含部署方案、架构建议和部署步骤 - 添加安全设计规范,涵盖密码安全、AppSecret验证和服务端API认证 - 补充平台REST API规范,定义Server-to-Server调用接口和错误码 - 创建Java IM服务端SDK计划文档,规划Maven包发布和接口实现
这个提交包含在:
父节点
21adce6665
当前提交
8a38f8334b
@ -63,7 +63,7 @@ async function doLogin(userId: string, password: string) {
|
|||||||
const res = await fetch('/api/demo/auth/login', {
|
const res = await fetch('/api/demo/auth/login', {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: { 'Content-Type': 'application/json' },
|
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()
|
const json = await res.json()
|
||||||
if (json.code !== 200) {
|
if (json.code !== 200) {
|
||||||
|
|||||||
正在加载...
在新工单中引用
屏蔽一个用户