Pavan Kumar Kpavan-blog.hashnode.dev·Nov 10, 2024Google Authentication in a MERN Stack Application with Passport.jsIntegrating third-party authentication systems like Google can save time and effort and provide security for the process. This blog will walk you through the steps of implementing Google OAuth authentication in a MERN stack app (MongoDB, Express, Rea...Discussgoogle Oauth
Rasel Hasanraselhasan.hashnode.dev·Sep 18, 2024I built my own Google Calendar Event Scheduler with FastAPIHey Codemonkey! I'm introducing a simple FastAPI-based application that allows users to schedule and manage events using the Google Calendar API. This app integrates Google OAuth for authentication, enabling event creation and retrieval from a user's...Discuss·228 readsFastAPI
Taiwo Ogunolaunicdev.hashnode.dev·Aug 30, 2024End-to-end Guide to building a Reliable Authentication System for a Startup MVP - Part 1As a startup, you’re always racing against time. Speed is crucial—you need to build, launch, and iterate quickly. That’s why many startups opt to outsource their authentication systems to third-party providers like Auth0, Firebase, or Supabase. These...Timothy Adeyeye and 1 other are discussing this2 people are discussing thisDiscuss·23 likes·88 readsEnd-to-end Guide to building a Reliable Authentication System for a Startup MVPfacebook oauth
Lemuel Leogene Reyeslemreyes.hashnode.dev·Aug 11, 2024Signing In With Google Using NextAuthNextAuth (or soon to be Auth.Js) is a free-to-use open source framework for authentication. Though NextAuth has a good site for documentation, there are times when some steps are missed out and it took me some time to figure it out. I write this arti...DiscussNext.js
BRYNNnote.heebin.site·Jul 13, 2024Google Sign-In with Amazon Cognito and Next.js1. Setting Up Amazon Cognito User Pool Cognito Console: Go to Amazon Cognito Console, select Create user pool. Configure Sign-In Experience: Select Federated identity providers. Choose Email as the minimum sign-in option. Under Federated sign-...DiscussAWSAWS
Martin Murjasmartinmurjas.hashnode.dev·Mar 10, 2024Securing Your Web Applications — Getting Started with OAuth AuthenticationIn recent years, many websites and applications provide the option to sign in using existing accounts you’ve created with companies like Google, Apple, or LinkedIn. This simplified sign-in process enhances the user experience by allowing customers to...Discussoauth
Tiana Lopeztianalopez.hashnode.dev·Dec 21, 2023Beginner's Guide to Google OAuth with React and FlaskIntroduction As web applications begin housing increasingly important and sensitive information, ensuring the security of user data and user accounts is paramount. User authentication is the process of verifying the identity of a user attempting to a...Discuss·118 readsGoogle
Sakshisakshi023.hashnode.dev·Nov 21, 2023Getting Started with OAuth 2.0Before learning about OAuth, let me explain these two basic terms: Authentication and Authorization Authentication simply means "Tell me who you are," which involves verifying your identity. The system checks if your username and password match, ensu...Discuss·40 readsoauth
Muhammad Asifasifdev-1697527454446.hashnode.dev·Nov 1, 2023Mastering OAuth Scopes: Protecting Your Data from Unauthorized AccessOAuth (Open Authorization) scopes are a mechanism used in OAuth 2.0, which is a protocol for secure authorization and access control. Scopes define the specific permissions or access rights that a client application is requesting from a user or resou...Discuss·10 likesoauth
Joseph Lweyalweyajoe.hashnode.dev·Oct 19, 2023Integrating Google Authentication for a Flask AppTo add Google authentication as an option for sign up and sign in alongside the traditional username and email method in a Flask app, you'll need to integrate OAuth2 authentication using Google's APIs. Below is a step-by-step guide to accomplish this...DiscussOAuth2