Best of JWTAugust 2024

  1. 1
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    Build a Shopping Cart Backend with Spring Boot and Spring Security

    Master Spring Boot and Spring Security by developing a fully functional shopping cart backend application. This course covers project setup, entity class creation, CRUD operations, service and controller development, and security integration using JWT. Suitable for both beginners and experienced developers, it provides practical insights and skills for backend development.

  2. 2
    Article
    Avatar of flutter_comFlutter Community·2y

    Dio + JWT in Flutter — Solution of async hell

    JWTs, or JSON Web Tokens, are used for authorization in backend services by providing access and refresh tokens. In Flutter, handling async HTTP requests can lead to multiple token refresh attempts when access tokens expire. To manage this, Dio's QueuedInterceptor can queue requests and handle tokens more efficiently. Key functionalities include a token validator, request refresher, and a request retry mechanism to ensure smooth operation and security.