Abhijeet DaveforfreeCodeCampfreecodecamp.org·Dec 3, 2024How to Set Up Google Authentication in Laravel ApplicationsIn this digital world, it’s important for your applications to have a smooth and secure authentication process. This helps improve user experience and the overall security of your apps. Google Authentication is among the most trusted and convenient w...Laravel
Ashim Rudra Paulcodewithashim.hashnode.dev·Jul 9, 2024Save Time and Effort Using easy-express-cwa for Backend Automation🛠️ As developers, setting up Express.js backends can be repetitive. That's why I created easy-express-cwa — a CLI tool that automates the setup process with just one command. It copies your entire backend setup, including TypeScript configurations, ...2 likescodewithashim
Emmanuel Kipchirchir Langatblog.kipchirchirlangat.com·Nov 16, 2023Handle Google login in Nest js and React like a pro.In this article, you will learn about Oauth 2.0 and how to set up Nest and React to use Google Oauth as one of the login methods. Prerequisites: Basic Understanding of NestJs. Basic understanding of ReactJs. A Google account. What is Oauth? Oaut...2 likes·418 readsnestjs
Micheal Davidmichealcodes.hashnode.dev·Sep 19, 2023Implementing a model for Google authentication with DjangoTo implement a model for Google authentication with Django, you generally don't need a custom model specifically for Google authentication. Instead, you can use Django's built-in User model or a custom user model, and then use third-party packages li...Devops
Micheal Davidmichealcodes.hashnode.dev·Sep 19, 2023Implementing Google Authentication for user login with Django Rest Framework (DRF)Implementing Google Authentication for user login with Django Rest Framework (DRF) involves several steps. Here's a high-level overview of the process: Create a Django Project: If you don't already have a Django project, create one using django-admi...74 readsGoogle