修正864联调中的真实路由与二维码状态同步

- 按 864 router.go 修正联系人详情与群公告的真实接口路径

- 结合 CheckLoginStatus 返回结构补充 uuid 与 effective_time 同步,支持 Dashboard 倒计时与二维码自动刷新

- 更新多版本适配路线图,记录首轮 864 实服联调结论
This commit is contained in:
liuwei
2026-05-07 12:07:42 +08:00
parent b3f2c2c87c
commit 8987b52361
4 changed files with 45 additions and 3 deletions

View File

@@ -49,7 +49,11 @@ class ChatroomMixin(Server864APIClientBase):
"""获取群公告详情。"""
data = await self._request_data(
"post",
"/group/GetChatRoomInfoDetail",
# 864 的群公告接口路由名保留了历史命名 `SetGetChatRoomInfoDetail`
# 1. controller 中实际导出的就是这个路径;
# 2. 直接用语义更自然的 `GetChatRoomInfoDetail` 会 404
# 3. 对外方法名继续保持 `get_chatroom_announce`,内部路径单独适配即可。
"/group/SetGetChatRoomInfoDetail",
json_body={"ChatRoomName": chatroom},
timeout=30,
)