修正864联调中的真实路由与二维码状态同步
- 按 864 router.go 修正联系人详情与群公告的真实接口路径 - 结合 CheckLoginStatus 返回结构补充 uuid 与 effective_time 同步,支持 Dashboard 倒计时与二维码自动刷新 - 更新多版本适配路线图,记录首轮 864 实服联调结论
This commit is contained in:
@@ -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,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user