What are you using for sign-up/sign-in in your products?

Do you use any auth providers, like Auth0, Firebase, Okta?

Do you use email-based sign-ups or only 3rd-party logins, such as Twitter/Google etc?

Do you build you own auth?

Bao D

Firebase auth if I need to use other services such as Firestore. Otherwise I use next-auth because my frontend stack is with Next.js.

0 Likes
Serge Zaitsev Author

@baocancode Thanks! If you deal with passwordless/email sign-ups in next-auth - do you use any particular mail servers?

0 Likes
Bao D

@zsergo TBH, I did not try passwordless/email sign-ups in next-auth yet, but it looks straightforward from the docs https://next-auth.js.org/providers/email (I use free Zoho email by the way).

0 Likes

Most of the time plain OpenID Connect

0 Likes

Devise gem. I use Postmark for mail delivery (since you asked in a reply) I don't use 3rd-party logins unless it's a feature requirement (like reading tweets). It's less friction but a lot of work to keep it updated, so you have to factor that in your choice.

0 Likes

Please sign in to leave a comment.