Replies: 1 comment
-
See: #3856 (comment) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The Magic Code authentication method should perhaps change its approach, taking as an example other libraries like auth.js, firebase auth or supabase auth where the Magic Code method by email does not exist and the closest thing to it is the Magic link method by email.
They are very similar methods but the biggest difference is the agility of the authentication flow. Magic link, as its name indicates, is a link that the user receives by email, this link already has an encrypted code in the URL, the URL also points to a route, in this route the code that is in the URL parameter is obtained, if it is valid, the user is authenticated and redirected.
This is much more agile than copy and paste a code. I think it is a very modern approach and it would be great if it were available here.
Beta Was this translation helpful? Give feedback.
All reactions