修正864联调中的真实路由与二维码状态同步
- 按 864 router.go 修正联系人详情与群公告的真实接口路径 - 结合 CheckLoginStatus 返回结构补充 uuid 与 effective_time 同步,支持 Dashboard 倒计时与二维码自动刷新 - 更新多版本适配路线图,记录首轮 864 实服联调结论
This commit is contained in:
@@ -19,7 +19,11 @@ class FriendMixin(Server864APIClientBase):
|
||||
room_wxid_list = [chatroom] if chatroom else []
|
||||
data = await self._request_data(
|
||||
"post",
|
||||
"/friend/GetContactDetail",
|
||||
# 864 的联系人详情最终要以 router 注册路由为准:
|
||||
# 1. controller 方法名虽然叫 `GetContactContactApi`;
|
||||
# 2. 但真正暴露出来的 URL 是 `/friend/GetContactDetailsList`;
|
||||
# 3. 因此这里按 router.go 的真实注册结果适配,避免继续命中 404。
|
||||
"/friend/GetContactDetailsList",
|
||||
json_body={"UserNames": user_names, "RoomWxIDList": room_wxid_list},
|
||||
timeout=30,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user