Firgrep
01/23/2024, 2:03 PMts
authUrl =
await getAuthorisationURLWithQueryParamsAndSetState({
thirdPartyId: "google",
frontendRedirectURI: `${frontendAppInfo.websiteDomain}/auth/callback/google${postLoginRedirectPathQuery}`,
});
But then I get a warning from google that the request is invalid. In their docs they specify that rediect uris cannot contain open redirects ( https://developers.google.com/identity/protocols/oauth2/web-server#uri-validation ). How else would one go about implementing this? Thank you.