© 2023 Hashnode
#authorization
What is JWT? JSON Web Token (JWT) is an open industry standard RFC (Request for Comment) 7519 method for representing claims between two parties that are securely transmitted as a JSON object. This tr…
The Stranger is a novel written by French philosopher Albert Camus and published in 1942. The story is told from the perspective of Meursault, a French Algerian who is emotionally detached and indiffe…
First of all, if you haven't read Part 1, "Is that really you?", STOP! Go read it right now! What are you still waiting for? GO! If you got to this point, congratulations, either you read the other ar…
Secure Your Web Application with These 16 Open-Source & SaaS Authentication Tools was initially published on Wednesday January 18 2023 on the Tech Dev Blog. For the latest up-to-date content, fresh ou…
Recently, I was working on an Angular project where certain components were public meaning that everyone should see them and others should be rendered only if the user is authenticated or have a speci…
Explore the essentials of integrating with 3rd party services, and take your web apps to the next level by getting familiar with the infrastructure necessary to call a REST API from a simple backend, using NodeJS + Express. REST APIs aren’…
In this blog post, we will learn how to authorize users for API calls, based on valid sessions and roles using Authorizer. Authorizer is an open-source database-independent auth solution. You can bring your database and have authentication …
I found gates a bit confusing for quite some time. I just ignored them for the first couple of years developing Laravel applications. I was confused by the naming and wasn't sure exactly what they wer…
Install 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 middlewa…
To get the user's ID from a JSON Web Token (JWT) stored in local storage in a React app, you can follow these steps: First, you will need to retrieve the JWT from local storage. You can do this using…