C#: Sign in with ID token (native sign-in)

Signs in a user using an ID token issued by a supported OIDC provider.

Examples

Sign in with a Google ID token

var session = await supabase.Auth.SignInWithIdToken(Provider.Google, idToken);

With a nonce

var session = await supabase.Auth.SignInWithIdToken(Provider.Apple, idToken, nonce: nonce);