mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-25 20:02:47 +00:00
Fix API method for retrieving WX login result from GET to POST (#5281)
This commit is contained in:
parent
366bccb833
commit
a3007417e8
|
|
@ -101,7 +101,7 @@ export const getWXLoginQR = () =>
|
|||
GET<GetWXLoginQRResponse>('/proApi/support/user/account/login/wx/getQR');
|
||||
|
||||
export const getWXLoginResult = (params: WxLoginProps) =>
|
||||
GET<ResLogin>(`/proApi/support/user/account/login/wx/getResult`, params);
|
||||
POST<ResLogin>(`/proApi/support/user/account/login/wx/getResult`, params);
|
||||
|
||||
export const getCaptchaPic = (username: string) =>
|
||||
GET<{
|
||||
|
|
|
|||
Loading…
Reference in New Issue