Shoki
06/17/2022, 11:29 AM[Unhandled promise rejection: Error: You must provide a OpenID Connect provider with your id token and nonce.]
Here is the code:
js
const { error } = await supabase.auth.signIn({
oidc: {
id_token: googleAuthSession.idToken!,
provider: "google",
nonce: "",
},
});
i am passing provider, so why is it complaining ?Needle
06/17/2022, 11:29 AM