You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Twilio Verify for SMS Phone User Signup produces the error User signup AuthApiError error status: 422, message: Error sending confirmation sms: Invalid parameter 'To': +{number} More information: https://www.twilio.com/docs/errors/60200
To Reproduce
resp = await supabase.auth.sign_up(
credentials={'phone': f'+{user.phone}' if '+' not in user.phone else user.phone,
'password': user.password,
'options': {
'data': {
'first_name': user.first_name,
'last_name': user.last_name},
'channel': 'sms'
}
})
System information
Running FastAPI (0.110.0) Server on Localhost (Mac Sonoma 14.5)
Supabase Version (2.4.0)
The text was updated successfully, but these errors were encountered:
Bug report
Describe the bug
Using Twilio Verify for SMS Phone User Signup produces the error
User signup AuthApiError error status: 422, message: Error sending confirmation sms: Invalid parameter 'To': +{number} More information: https://www.twilio.com/docs/errors/60200
To Reproduce
System information
The text was updated successfully, but these errors were encountered: