3 ms·
What auth do you use? Why?
For example, Sign up/Login with Google/Apple etc, magic links, and/or one time passcodes.
- shams93 3y agoI've used jwt with react, making sure to secure the token properly. In my next project I want to use openid so users don't have to manually create a new account.
- CGamble26 3y agoHow long did that take you to build?
- Lacerda69 3y agoFor anything serious password + WebAuthn MFA with Ory Kratos. It lets me choose any method really, can be self-hosted or used as SaaS. IMO it's almost always good to offer some OIDC social login, just depends what provider your users use. - https://github.com/ory/kratos https://github.com/ory/kratos
- CGamble26 3y agoThis may be a dumb question but, why couldn’t applications just use Webauthn? Why add passwords?
- vdelitz 3y agoThe only reason probably if some accounts already have a password and you want to support it. If you're building a new app, I'd also go for WebAuthn / passkeys-only and use some other passwordless method (e.g. social login/OIDC or email magic links as fallbacks)
- CGamble26 3y agoOk understood, thank you very much!