reading-notes


Project maintained by Razan-am Hosted on GitHub Pages — Theme by mattgraham

API Integration

How do bearer tokens work?

Describe express middleware

What is a JWT?


Terms

role based access control: Role-based access control (RBAC) restricts network access based on a person’s role within an organization and has become one of the main methods for advanced access control. The roles in RBAC refer to the levels of access that employees have to the network.

http cookies: An HTTP cookie (web cookie, browser cookie) is a small piece of data that a server sends to the user’s web browser. The browser may store it and send it back with later requests to the same server. Typically, it is used to tell if two requests came from the same browser — keeping a user logged-in, for example. It remembers stateful information for the stateless HTTP protocol.


References:

@By Rajesh Kumar/What is Bearer token and How it works?

@By Lee Brandt/Build and Understand Express Middleware through Examples

@By jwt/Introduction to JSON Web Tokens