Ask HN: Which Auth Service for SaaS?
1–10 of 10 posts
Re: Ask HN: Which Auth Service for SaaS?
#2If you're looking for a full fledged service that offers SSO and that you can self host (or cloud) with SDKs for most of the popular languages out there, then I'd recommend to look at Ory[1].
[0] https://docs.microsoft.com/en-us/aspnet/core/security/authen... [1] https://www.ory.sh/
Re: Ask HN: Which Auth Service for SaaS?
#3It depends on what your needs are. If you need simple auth for a single application, most languages have libraries/frameworks that cover most of your needs and are relatively trivial to implement. In .NET land you have Identity[0] for example. You just need to look up what is the most popular option for the tech you're using and if it ticks all your boxes. If you're looking for a full fledged service that offers SSO…
Re: Ask HN: Which Auth Service for SaaS?
#4Re: Ask HN: Which Auth Service for SaaS?
#5Re: Ask HN: Which Auth Service for SaaS?
#6Auth0 is complete overkill if you don't need their advanced features IMO.
Re: Ask HN: Which Auth Service for SaaS?
#7Auth is zero value-add table-stakes requirement with a lot of complexity. I haven't a seen a product with enough built-in. External provider is the way to go.
Re: Ask HN: Which Auth Service for SaaS?
#8I prefer auth0. It's simple enough for a simple SaaS.
Re: Ask HN: Which Auth Service for SaaS?
#9If you're just building an MVP I think doing "magic link" auth is underrated. It's super easy to set up, relatively secure, doesn't need any of the complexity of passwords/sso, and is easy to migrate to a different system in the future. Auth0 is complete overkill if you don't need their advanced features IMO.
Re: Ask HN: Which Auth Service for SaaS?
#10Auth is zero value-add table-stakes requirement with a lot of complexity. I haven't a seen a product with enough built-in. External provider is the way to go.
I tend to agree, but which provider do you use?