hookehuyr

fix(authRedirect): 添加 client_id 参数到会话刷新请求

修复后端会话刷新时缺少 client_id 参数的问题,确保认证流程正确执行
...@@ -122,6 +122,7 @@ export const refreshSession = async (options) => { ...@@ -122,6 +122,7 @@ export const refreshSession = async (options) => {
122 122
123 const request_data = { 123 const request_data = {
124 code: login_result.code, 124 code: login_result.code,
125 + client_id: '358209',
125 } 126 }
126 127
127 // 换取后端会话(服务端通过 Set-Cookie 返回会话信息) 128 // 换取后端会话(服务端通过 Set-Cookie 返回会话信息)
......