Dec 9, 2025 · 8 min read · Series: Web Authentication Demystified — From Concepts to Real-WorldARC 1 — FOUNDATIONS OF USER AUTHENTICATIONPrevious: Authentication Flows: Choosing the Right OneNext: Architecture Overview of my implemented Web App Authentication System Modern app...
Join discussion
Jul 30, 2025 · 2 min read · So today i will try to explain what is access token and refresh token in respect to JWT and sessions. Flow of Token generation image So from the above image you can get a rough idea what is happening if not then today i will tell you what happens be...
Join discussionJul 28, 2025 · 4 min read · Having worked on token-based authentication for over two years and successfully deploying both single-server and distributed web apps in production, I thought of writing down the exact steps I followed—and all the mistakes I made along the way. Authe...
Join discussionApr 6, 2025 · 6 min read · Introduction In modern web development, securing user authentication and authorization is critical. With the advent of Single Page Applications (SPAs) and mobile apps, traditional server-side sessions are being replaced by tokens for managing access ...
Join discussion
Feb 16, 2025 · 7 min read · In modern web applications, managing user authentication and authorization is crucial for ensuring security and proper access control. Authentication Simply, we know that authentication is nothing but verifying the user identities for security purpos...
Join discussion
Jan 16, 2025 · 5 min read · JSON Web Tokens (JWT) have become the industry standard for authentication in modern web applications. This guide walks through implementing JWT authentication in a Spring Boot application, adding a refresh token mechanism for enhanced security and a...
Join discussion
Nov 18, 2024 · 2 min read · Como sabemos, Laravel Sanctum nos permite implementar autenticación basada en tokens de forma sencilla y eficiente. Aunque generalmente se utiliza para autenticar usuarios, también es posible adaptarlo para manejar la autenticación de otros modelos e...
Join discussionJan 23, 2024 · 3 min read · Overview Traditional authentication methods often involve the exchange of credentials like usernames and passwords. Token-based authentication introduces a paradigm shift by utilising tokens – cryptographic strings representing user authorization. Tw...
Join discussion
Oct 17, 2023 · 6 min read · Before implementing token-based authentication, we need to understand the components of JWT and the common pitfalls developers face while implementing token-based authentication. Common pitfalls Where to store JWT in the front end? Suppose you're bui...
Join discussion