Yashblog.yassh.in·Oct 31, 2024Authentication using NexAuth in NextJSAuthentication in NextJS has been made very simple by the next-auth library, in this post we will go through on how to setup authentication in your NextJS 14 application. We will not be using NextJS 15 because it is not stable yet. I will not go thro...Discuss·28 readsNext.js
Manish Kumar Guptaheismanish.hashnode.dev·Jun 14, 2024Why NextAuth uses cookies??Introduction So we want to authenticate our user in our NextJS app, right? Then why don't we just make a request to the server the first time for authentication, get the JWT token, and then maybe store it in our local storage and keep sending the tok...Discussnextauth
Dania Emaridania.hashnode.dev·Aug 30, 2023Next.js 13 Authentication: Using GitHub OAuth with NextAuth.js in the App RouteNextAuth.js NextAuth.js is an open-source authentication solution for Next.js applications. It simplifies the process of implementing authentication, including features like social logins (via OAuth providers like Google, Facebook, Twitter, etc.), em...Discuss·10 likes·101 readsnextauth.js
Nandkishor Yadavnandkishor.hashnode.dev·Dec 6, 2021How to implement NextAuth credentials provider with external API and login pageWhen it comes to adding authentication to your next.js project, NextAuth is a wonderful option. It's easy to see why, given its extensive provider support, which includes Apple, GitHub, Azure Active Directory, Azure Active Directory B2C, Google, and ...Discuss·476 readsauthentication