scope fix for google strategy

This commit is contained in:
x
2025-04-28 12:17:04 -04:00
parent 1b3e8b0a1c
commit 03d7f9f786

View File

@@ -55,7 +55,7 @@ export const registerSsoRouter = async (server: FastifyZodProvider) => {
clientID: appCfg.CLIENT_ID_GOOGLE_LOGIN as string,
clientSecret: appCfg.CLIENT_SECRET_GOOGLE_LOGIN as string,
callbackURL: `${appCfg.SITE_URL}/api/v1/sso/google`,
scope: ["profile", " email"],
scope: ["profile", "email"],
state: true,
pkce: true
},