Best of AuthorizationMarch 2023

  1. 1
    Article
    Avatar of permitioPermit.io·3y

    How to build authorization like Netflix with Open Source?

    Learn how Netflix solved the challenge of authorizing millions of users by using OPA, and discover how you can implement a similar solution.

  2. 2
    Article
    Avatar of javacodegeeksJava Code Geeks·3y

    RESTful Architecture Cheatsheet

    RESTful architecture is a scalable and interoperable approach for building web services. It offers benefits such as scalability, interoperability, simplicity, flexibility, and security. The HTTP verbs used in RESTful architecture are GET, POST, PUT, DELETE, HEAD, OPTIONS, PATCH, CONNECT, TRACE, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, and LOCK. Resources in a RESTful API are identified using unique URIs, and plural noun conventions are often used for collections. Authentication and authorization are important aspects of securing RESTful APIs, and various mechanisms such as Basic Auth, OAuth, and RBAC can be used.

  3. 3
    Article
    Avatar of logrocketLogRocket·3y

    Understanding guards in NestJS

    Guards in NestJS control program flow and determine access to endpoints. They can be applied at different levels and enhance security and organization in NestJS applications.