This commit is contained in:
eson 2023-08-30 10:49:19 +08:00
parent 5a2d1953dc
commit 2372dab72b

View File

@ -54,7 +54,7 @@ func (l *UserGoogleLoginLogic) UserGoogleLogin(req *types.RequestGoogleLogin, us
// userinfo 传入值时, 一定不为null
var googleOauthConfig = &oauth2.Config{
RedirectURL: fmt.Sprintf("https://%s/api/auth/oauth2/login/google", l.svcCtx.Config.MainAddress),
RedirectURL: fmt.Sprintf("%s/api/auth/oauth2/login/google", l.svcCtx.Config.MainAddress),
ClientID: l.svcCtx.Config.OAuth.Google.Appid,
ClientSecret: l.svcCtx.Config.OAuth.Google.Secret,
Scopes: []string{"https://www.googleapis.com/auth/userinfo.email", "https://www.googleapis.com/auth/userinfo.profile"},