We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VerifyOTP supports only phone OTP verification unline supabase js library.
I would like to send OTP by email with: Supabase.Client.Instance.Auth.SendMagicLink("[email protected]")
Supabase.Client.Instance.Auth.SendMagicLink("[email protected]")
I set .Token to the Magic link instead of .ConfirmationURL. This way user gets verification token. <p>Verification code: <code>{{ .Token }}</code></p>
<p>Verification code: <code>{{ .Token }}</code></p>
I need verify this token by VerifyOTP() the same way as in supabase js library await supabase.auth.verifyOTP({ email, token, type: 'magiclink' })
await supabase.auth.verifyOTP({ email, token, type: 'magiclink' })
Implement compatible interface with supabase js library.
The text was updated successfully, but these errors were encountered:
Implements #41 - Add support for VerifyOTP(string email, string token)
VerifyOTP(string email, string token)
f45d47c
@bhemala thanks for the issue - this is available in v2.4.7!
Sorry, something went wrong.
perfect! thanks!
No branches or pull requests
Feature request
VerifyOTP supports only phone OTP verification unline supabase js library.
Is your feature request related to a problem? Please describe.
I would like to send OTP by email with:
Supabase.Client.Instance.Auth.SendMagicLink("[email protected]")
I set .Token to the Magic link instead of .ConfirmationURL. This way user gets verification token.
<p>Verification code: <code>{{ .Token }}</code></p>
I need verify this token by VerifyOTP() the same way as in supabase js library
await supabase.auth.verifyOTP({ email, token, type: 'magiclink' })
Describe the solution you'd like
Implement compatible interface with supabase js library.
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: