Auth0 Reviews (276)

Reviews

Auth0 Reviews (276)

4.3
276 reviews

What do users say?

Generated using AI from real user reviews
Users consistently praise Auth0 for its ease of use and flexibility in implementing secure authentication solutions. The platform simplifies complex identity management tasks, allowing developers to focus on core application features while ensuring robust security. However, many reviews note that pricing can become expensive at scale, particularly for startups and growing businesses.

Pros & Cons

Generated from real user reviews
View All Pros and Cons
Search reviews
Filter Reviews
Clear Results
G2 reviews are authentic and verified.
Yauhen D.
YD
Yauhen D.
Senior Fullstask Developer
Information Technology and Services
Mid-Market (51-1000 emp.)
"A strong option for B2B, Organizations, and more advanced access control"
4.5/5
What do you like best about Auth0?

Auth0 works well for me because it saves us from building authentication from scratch and, more importantly, from building it badly. The documentation also leaves a strong impression. Adding authentication to a new app usually means juggling SDKs, redirects, callbacks, token handling, and environment configuration. With Auth0, that whole setup feels fairly straightforward. I would not say identity is ever completely simple, because it is not, but the platform feels designed for developers who need to move fast without getting bogged down by confusing docs. Universal Login is probably what simplifies things the most for us. Rather than maintaining our own login screen and worrying about every security edge case, we can delegate a big part of that flow and focus on integrating it properly into the product. For a development team, that translates into less sensitive code to maintain and less risk around something that really needs to be done right. Review collected by and hosted on G2.com.

What do you dislike about Auth0?

The learning curve really becomes noticeable once you start working on the more advanced side of the platform—Organizations, enterprise SSO, FGA, scopes, claims, machine-to-machine tokens, and multi-tenant flows. The basic setup can move quickly, but getting real value out of the full ecosystem takes time and some effort. I don’t see that as a flaw; it’s simply part of working with identity at a serious level. Review collected by and hosted on G2.com.

Sunshine H.
SH
Sunshine H.
Junior Software Developer
Small-Business (50 or fewer emp.)
"Auth0 Makes Secure Authentication Easy for a Beginner Developer"
5/5
What do you like best about Auth0?

What’s most helpful to me about Auth0 is the security it provides for my developing applications. As a beginner web developer, I aspire to offer services that protect my clients’ information, and Auth0 gives me the reliability I need to feel confident about that. Making sure each user is properly authenticated as they register for my services is extremely important to me, and Auth0 provides that level of safety. The UI is easy to add to my projects. The integration of the Auth) service is quick and simple. The performance regarding the safety of my application is assuring to my customers. The price for complete access to all Auth0 services is affordable and I'm sure to implement them once my product requires it. The setup support for my account was clear and understandable. I was able to complete the process fast. I haven't used any of the AI capabilities yet however I am glad that the services are there if needed. Review collected by and hosted on G2.com.

What do you dislike about Auth0?

There were several areas where I needed a little extra help with understanding how to use the feature but through reading and researching, I was able to construct my account the way I needed. As my project grows and develops I will be revising my account settings with the assistance of the AI services. Review collected by and hosted on G2.com.

Roger F.
RF
Roger F.
Development Manager UK Qualifications and Assessments
Small-Business (50 or fewer emp.)
"Fast to Integrate, Scales Well, and Affordable for MVPs"
4/5
What do you like best about Auth0?

It's extremely quick to integrate a good security model into a new product ahead of an MVP. It then also scales nicely as the application grows. The free tier also allows early demos, and the Pro price is extremely affordable for a new business idea.

The UI/UX is very clear, and the documentation and starter apps make getting started in a fairly complex area very simple. Review collected by and hosted on G2.com.

What do you dislike about Auth0?

It can be hard to get the exact user experience you want around password resets using the Universal Login, though customisation of this is not hard. But it does mean that, for instance, I have implemented setting a new password for new users in my app rather than relying on auth0 because there's no clean way to direct to my app afterwards. Review collected by and hosted on G2.com.

Priyanshu J.
PJ
Priyanshu J.
Social Media Lead
Computer Software
Small-Business (50 or fewer emp.)
"Fast, Secure Authentication with Clean Dashboard and Smooth React Integration"
4.5/5
What do you like best about Auth0?

It is how quickly I was able to add secure login authentication to my projects without building everything from scratch. I use social login integrations like Google authentication, and the setup was much faster compared to creating a custom auth system manually. The dashboard is clean, so managing users, roles, and permissions feels organized. Login performance is reliable, and authentication requests are processed quickly without noticeable delays. I also like how easily it integrates with React and backend APIs, which saved development time in my workflow. The documentation and onboarding guides were detailed enough to help me set things up without much confusion. Overall, it reduced development effort and made authentication management much more secure and efficient. Review collected by and hosted on G2.com.

What do you dislike about Auth0?

It is that the pricing becomes expensive as the number of users grows. When I started testing advanced features like role-based access and multiple integrations, some useful options were locked behind higher plans. The dashboard is clean, but certain settings and authentication flows took time to fully understand in the beginning. I also faced issues while customizing login pages because some configurations were not very straightforward. Error debugging during authentication failures can sometimes feel confusing as well. Overall, it works reliably, but pricing and customization complexity can be frustrating. Review collected by and hosted on G2.com.

Achu S.
AS
Achu S.
Associate Software Engineer
Information Technology and Services
Enterprise (> 1000 emp.)
"Auth0 Makes Authentication Simple with SSO, Social Login, MFA, and Roles"
5/5
What do you like best about Auth0?

What I like most about Auth0 is how simple it makes it to set up authentication for a web application without having to build the entire authentication flow from scratch. It also offers Single Sign-On (SSO), which is especially helpful when you’re using an organizational account, because it creates a smoother sign-in experience while still staying straightforward to implement and use. It also supports social login options such as Microsoft, GitHub, and Google. On top of that, Auth0 includes MFA and role-based access, which helps cover common security and access-control needs. Review collected by and hosted on G2.com.

What do you dislike about Auth0?

Pricing is a little higher, and depending on how it’s used, the cost can increase. If advanced security is needed, the pricing will go up as well. Migrations to different platforms can require high code changes, including user migration and authentication flow redesign, and the application can become heavily dependent on it. Sometimes complex configurations is needed for enterprise setup. Review collected by and hosted on G2.com.

Verified User in Computer Software
AC
Verified User in Computer Software
Small-Business (50 or fewer emp.)
"Clean Auth0–Supabase Split with Smooth Sign-In and Token Handling"
4/5
What do you like best about Auth0?

What works best for us is the clean split between hosted identity and our application data. In this repo Auth0 handles the browser sign-in flow through @auth0/auth0-react, the dashboard can request fresh access tokens silently, and our Fastify API can validate bearer tokens with a standard audience/domain configuration. It lets us keep Supabase focused on application data while Auth0 owns login, sessions, and identity tokens. Review collected by and hosted on G2.com.

What do you dislike about Auth0?

The main downside for us is operational complexity around environment management. The SDK flow is straightforward, but review, staging, and production require exact domain, audience, client ID, callback URL, and logout URL alignment, plus separate Management API credentials for read-only checks. When an email claim is missing we also need fallback logic to /userinfo or the Management API, which adds edge cases. Clearer built-in environment promotion and validation tooling would help. Review collected by and hosted on G2.com.

Verified User in Higher Education
AH
Verified User in Higher Education
Small-Business (50 or fewer emp.)
"Seamless Authentication Integration with Auth0"
4.5/5
What do you like best about Auth0?

The thing that I really enjoyed while working with Auth0 is the convenience of integrating the authentication with my Flask application by means of its official SDK. Configuration of the application, setting up callback URLs and logging in via my Google account took no time. Dashboard of Auth0 is easy to use and clean. The monitoring of the logs, Universal Login Customization and AI Guide were helpful while doing tests. AI guide allowed me to easily get information concerning Google login, Flask integration and MFA. Authentication went fast and reliably throughout my tests. Thus, my experience with Auth0 was rather good, since it worked well and without any delay at all.

The process of familiarizing myself with Auth0 thanks to the ready-made documentation and onboarding was very comfortable. Moreover, detailed logs allowed me to immediately see and solve the problem of configuration of the callback URL while testing. Though I tested the free developer plan of Auth0, it offered me enough functionality to make and test a whole authentication workflow. Review collected by and hosted on G2.com.

What do you dislike about Auth0?

While doing the evaluation, I realized that Auth0 requires a little bit of a learning curve, particularly for developers who had never used it before. This platform provides many settings through the dashboard. It therefore required some time to get acquainted with the system. I took some considerable time to fix the configuration problem relating to a callback URL, but then I was able to integrate the system, though the monitoring logs helped me quickly locate the issue. The AI guide was useful in giving answers to any general query regarding the system, but more troubleshooting examples should be provided for integration problems. Review collected by and hosted on G2.com.

Mohamed S.
MS
Mohamed S.
Procurement Associate
Telecommunications
Enterprise (> 1000 emp.)
"Auth0 Simplifies Secure Authentication with Powerful, Customizable Features"
5/5
What do you like best about Auth0?

What I like the most about Auth0 is that it enables simplifying authentication and authorization without necessarily developing everything on your own. The platform provides a rich set of capabilities such as social logins, multi-factor authentication, and single sign-on, and thus can be highly customizable to various applications. It is also developer friendly, has good documentation and SDKs that facilitate easier integration. Generally, it conserves much time and maintains high levels of security. Review collected by and hosted on G2.com.

What do you dislike about Auth0?

One downside of Auth0 is that it can feel a bit complex when you first start using it, especially for beginners. The pricing structure can also become expensive as you scale, which might not be ideal for smaller businesses. Additionally, customizing certain workflows or debugging issues sometimes requires deeper technical knowledge, which can slow things down if you’re not very familiar with the platform. Review collected by and hosted on G2.com.

Anurudh T.
AT
Anurudh T.
Trainee
Small-Business (50 or fewer emp.)
"Auth0 Simplifies Secure Authentication with Flexible Roles and Permissions"
3.5/5
What do you like best about Auth0?

It has the ability to secure user authenthication and authorization

Features like Single Sign-On (SSO), Multi-Factor Authentication (MFA), and social logins are easy to implement, saving development time while providing a secure and seamless user experience.It also supports to connect with github,micrsoft and facebook.With the help of security approach can be used for the industry uses very efficiently. Review collected by and hosted on G2.com.

What do you dislike about Auth0?

What I dislike most about Auth0 is that some of its more powerful features can be difficult to set up, especially if your team is new to identity and access management. Also, the pricing can become a bit too expensive as your user count increases. When working with large legacy projects, it can be challenging to get the authentication flows working smoothly. As a new user, I also found the dashboard a little confusing at first. Finally, integrating third-party services with the authentication infrastructure can be difficult as well. Review collected by and hosted on G2.com.

Verified User in Computer & Network Security
AC
Verified User in Computer & Network Security
Small-Business (50 or fewer emp.)
"Simplified Identity Management with Seamless Integration"
4.5/5
What do you like best about Auth0?

I find Auth0 incredibly valuable for its SSO, MFA, Universal Login, and Role-based access control features. SSO has improved user experience by allowing access to multiple apps with a single set of credentials. MFA provides an important security layer. The Universal Login feature ensures a consistent and secure authentication experience without having to build custom login pages. The detailed authentication logs and monitoring capabilities are something I frequently rely on, as they simplify troubleshooting login issues and allow me to set up alerting in my SIEM tools. Additionally, the initial setup was relatively straightforward, thanks to helpful documentation and setup guides. I also appreciate how straightforward the integrations are, as Auth0 works well as a central identity layer, making it easy to manage authentication consistently across different applications and environments. Review collected by and hosted on G2.com.

What do you dislike about Auth0?

One feature I would like to see is improved dashboard experience for managing Actions, apps, and authentication flows. While the functionality is powerful, finding and troubleshooting configurations across multiple sections can sometimes be time-consuming. I would also appreciate more built-in reporting and analytics around login trends and user activity without needing additional integrations. Review collected by and hosted on G2.com.