Shubham SharmaforShubham Sharmashubhamku044.hashnode.net·Aug 27, 2022Add Google Authentication to your NextJs project using NextAuth.jsNext-Auth is a complete open-source authentication for Next.Js applications. You can learn more about it here. Here in this blog tutorial, I will show you how you can use NextAuth.js in your NextJs project to add Google authentication. In this partic...Discuss·43 likes·230 readsNext.js
Hoh Shen YienforShen's Developer Diaryshenyien.hashnode.net·Apr 6, 2023FeaturedInsta-Next: Authentication with NextAuthIn this part, we will be building the authentication part of the web application using NextAuth.js. Particularly, we will look into the process of login and registration, as well as retrieving the active user information from the backend. Finally, we...Discuss·27 likesFullstack Instagram Clone with Next.jsNext.js
Aman janwaniforAman Janwaniamanjanwani.hashnode.net·Sep 11, 2022How to use NextAuth Adapter with Firebase?So, Hello everyone I'm Aman Janwani a 15-year-old Web Developer from India 🇮🇳, Currently studying in Grade 11th. Let's start with creating the Next.js app and installing Tailwind CSS npx create-next-app my-project This command will create a Next ...Discuss·10 likes·73 readsNext.js
Oluwatosin Gbengaforcodemerchant.hashnode.net·Apr 24, 2023Implementing Authentication in Next.js with NextAuth.jsAuthentication is a crucial aspect of building web applications. It allows users to access secure areas of the application and ensures that sensitive data is only accessible to authorized individuals. Next.js provides several ways to implement authen...DiscussJavaScript
Niaz MorshedforNiaz Morshedniazmorshed.hashnode.net·Apr 13, 2023How to create a custom login page in NextAuth.js?Before jumping into the main part let's talk about NextAuth.js first. NextAuth.js is a popular authentication library for Next.js applications that provides a simple and easy-to-use solution for handling user authentication and authorization. By defa...Discuss·36 readsNext.js
Hoh Shen YienforShen's Developer Diaryshenyien.hashnode.net·Apr 6, 2023FeaturedInsta-Next: Authentication with NextAuthIn this part, we will be building the authentication part of the web application using NextAuth.js. Particularly, we will look into the process of login and registration, as well as retrieving the active user information from the backend. Finally, we...Discuss·27 likesFullstack Instagram Clone with Next.jsNext.js
satish ankalapforTechInsidersatishankalap.hashnode.net·Apr 5, 2023CI Project (Part-2)In the previous Part, we set up our infrastructure. If you haven’t read it yet, I request you to do so in order to get a better understanding of the project. I will give the link below. https://medium.com/@satishankalap96/ci-project-part-1-fb2683f5ac...Discuss·1 likeDevops
Lior AmsalemforLior Amsalem Engineering Bloglior-amsalem.hashnode.net·Apr 2, 2023Nextjs Error: Objects are not valid as a React child (found: [object Promise]). If you meant to render a collection of children, use an array insteadI've noticed within the community of nextjs, there's a repetitive error that keeps occurring but is very difficult to understand. if you get this error, here are a few reasons why this error might occur This error hides another error In nextjs 13, in...Discuss·9 likes·100 readsNext.js
Kelvin MwinukaforKelvin Mwinukakelvinmwinuka.hashnode.net·Feb 24, 2023Social Login With Cognito and NextAuthAWS Cognito user pools allow you to manage your app's within the AWS ecosystem. It provides all the basic features you'd expect from an auth system. When I'm building an application on AWS infrastructure, I prefer using Cognito user pools due to its ...Discuss·385 readsCognito
Yash NirmalforYash NIrmalyashnirmal.hashnode.net·Feb 16, 2023Google Authentication in NextJs application! (In 10 minutes)Overview In this blog, we are going to learn how we can do Google Sign In in our Nextjs web application. We will be using next-auth-js for authentication. You can check the whole code on my Github: https://github.com/yashnirmal/next-google-auth Why u...Discuss·28 readsNext.js
Christian PelayoforChristian Pelayochanpelayo.hashnode.net·Oct 13, 2022Salesforce Authentication in NextJS using NextAuth👋 Introduction This project was created to demonstrate how to use NextAuth.js to Authenticate Salesforce as the provider of the authentication. There is no critical data that are being stored. There is no database involved, it only uses the access_t...Discuss·173 readssalesforce integration
Said Mounaimforsaidmounaim.hashnode.net·Oct 12, 2022Created Protected Routes In Next.js Using Next-AuthHello Guuys! Today I 'Il show you how to create Protected Routes In Next.js using Next-Auth. first go to app.js and define Auth function is a wrapper component that we're going to use inside my app it accept a children and inside this function we use...Discuss·60 readsNext.js
Said Mounaimforsaidmounaim.hashnode.net·Oct 9, 2022Authentication with credentials using Next-Auth & MongoDBFor create Login Authentication we're going to use Next-Auth package from Vercel Here is the link Next-Auth , Let's install it open your terminal and run npm i next-auth next step is creating a folder inside Api and set folder name to auth and inside...Discuss·117 readsNext.js