© 2023 Hashnode
#oauth2
Beware, technical article ahead! OAuth 2 and OpenID are complex protocols. It's full of tiny details that are there for the sake of security and it's not always clear why some checks are necessary. T…
API Gateway is a very popular pattern in microservice nowadays architecture. In this scope, I just want to point out some key advantages of the pattern in terms of application or API security Reduce the effort in developing security integra…
Getting started with creating a spring boot project using a spring initializer Now let's create a spring boot project with the help of Spring initializer by adding Spring Web and OAuth2 Client as Dependencies as mentioned below and here we…
As web and mobile applications become increasingly reliant on third-party APIs, it's critical to manage the tokens issued by OpenID Connect flows effectively. Tokens are used to authenticate and autho…
Introduction Ahoy, fellow explorers! Are you ready to embark on an epic journey through the fascinating world of OAuth 2.0? With this Hashnode blog post as your trusty compass, we'll navigate the vast ocean of this powerful authorization fr…
OAuth2 is an authorization framework that allows applications to access a user’s resources stored in another application without the need to share the user’s credentials. In this blog post, we will go…
Why do I need an access token? Access tokens are part of the authentication flow for accessing a resource that lives within Salesforce. Think of it as your way of proving that you are allowed to have …
In this article, I'm gonna discuss How to configure your gmail account for sending emails in node.js using nodemailer & oAuth2. Previously, we had an option for sending emails in node.js via gmail by …
OAuth 2 is an open standard protocol that allows applications to securely access a user's data without requiring the user to share their login credentials. It enables users to grant third-party applic…
"OAuth 2.0 and OpenID Connect (OIDC) have become the de facto standards for authentication and authorization in modern web applications and APIs. In the world of Kubernetes, these technologies provide…