Prajwal Haniyaprajwalhaniya.hashnode.dev·Sep 19, 2023How authentication system works in web apps?|PART-1| Techletter #44In this series, let's dive into the complete engineering mechanism of how an authentication system works. It is one of the fundamental building blocks of most of the software applications. Here, let's implement it with nodejs and passportjs . We will...Discuss·1 likeauthentication
Abhik Banerjeeabhik.hashnode.dev·Sep 2, 2023Next x Nest - Using Supabase & Google OAuth in NestJS...and making it work with your NextJS + NextAuth app. Shall we pick up right where we left off from? The last article in this series was cut short due to excess length. We covered how to use Next Auth and Supabase with Google OAuth provider in NextJ...Discuss·578 readsNext x NestNext.js
Andisi Ambukuandisiambuku.hashnode.dev·Aug 23, 2023User Authentication with Passport JS and JWT in Nest JSNest JS is the lovechild of Typescript and Node JS (hurrah type-safety for the backend). The two come together to create a modular and robust framework that is easy to scale and maintain. This framework is ideal for developers who prefer convention o...Discuss·2 likes·70 readsBackend Developmentnestjs
Abigaila Ekiertabigaila-ekiert.hashnode.dev·Jun 4, 2023SAML SSO implementation exampleNot that long ago I needed to implement an SSO solution. I had two objectives - it had to support SAML and I should use one of the existing libraries to do so. After doing initial research and settling on the library (spoiler alert! passport-saml - i...DiscussSSO
Jan Vlnasjnv.hashnode.dev·Jan 20, 2023Instagram Graph API Explained: How to log in usersThere are two ways how to access the Instagram API: Through Instagram’s Basic Display API Through Instagram Graph API Instagram Basic Display API is limited to read-only access to a user’s profile and isn’t intended for user authentication. It’s ...Discuss·4 likes·29 readsInstagram Graph APIinstagram
Shreyash Rangrejshreyashrangrej.hashnode.dev·Dec 23, 2022Guide on how to Implement authorization and authentication in an Express.js API with Passport.jsInstall the necessary packages: To get started, you will need to install the following packages: express: This is the web framework for building the API. passport: This is an authentication middleware for Node.js that helps you authenticate request...Discuss·35 readsExpress.js
Wen-liang Suwensu.hashnode.dev·Dec 5, 2022Cookie and SessionHTTP stateless To talk this subject, we have to know what is the stateless protocol in HTTP. The stateless protocol means that when the computers communicate with each other, they don’t care their state and all the requests are independent. Their res...DiscussNode.js
Jan Vlnasjnv.hashnode.dev·Nov 28, 2022How to use Twitter OAuth 2.0 and Passport.js for user logintl;dr Use the Node.js package @superfaceai/passport-twitter-oauth2 to handle user authentication with Twitter's v2 API and Passport.js. https://github.com/superfaceai/passport-twitter-oauth2 Read on for the background, how to obtain Twitter credentia...Discuss·8 likes·116 readsTwitter
Gabriel Menezesmnzs.hashnode.dev·May 20, 2022Setup Project and Fastify Platform - NestJs with Passport #01In this series of posts I will create an Authentication system with Passport using social auth and JWT. Let's use the combination of NestJs + Passport + Fastify to create a complete authentication system. So in this first part, we start with a blank ...Discuss·38 readsnestjs
Nnaji Chimuanyannajichimuanya.hashnode.dev·Apr 21, 2022Authentication using PassportJSQuick Introduction to PassportJS Requirements Guide on setup Here is a working example What is PassportJS? Passportjs is an authentication middleware for Node.js. A comprehensive set of strategies support authentication using username and password, ...Discuss·16 likes·367 readsNode.js