sign_in_with_otp()
method again.reset_password_for_email()
method again.email_redirect_to
option.undefined
response = supabase.auth.resend(
{
"type": "signup",
"email": "email@example.com",
"options": {
"email_redirect_to": "https://example.com/welcome",
},
}
)
response = supabase.auth.resend(
{
"type": "sms",
"phone": "1234567890",
}
)
response = supabase.auth.resend(
{
"type": "email_change",
"email": "email@example.com",
}
)
response = supabase.auth.resend(
{
"type": "phone_change",
"phone": "1234567890",
}
)