Python: Sign in with ID Token

Allows signing in with an OIDC ID token. The authentication provider used should be enabled and configured.

Parameters

Examples

Sign In using ID Token

response = supabase.auth.sign_in_with_id_token(
    {
        "provider": "google", 
        "token": "your-id-token",
    }
)