I want to implement OTP based login for my application can someone recommend good services for this use case? Are there any free services? I am using Nodejs+Mongodb
a
adorable-furniture-84197
08/02/2021, 4:29 AM
Check out supabase
a
acceptable-flag-71699
08/15/2021, 5:19 AM
Implement short-term password, rather than one-time password and it becomes a lot simpler to implement as you don’t need any storage at all. Just produce a deterministic code based on (userid, timestamp, action) and verify it when user submits it.
e
echoing-computer-87366
08/15/2021, 5:09 PM
Any example which you can share? did not get you completely