Mobile Registration Flow with JWT Authentication and Rate-Limited SMS Verification
Frontend validates mobile number format client-side.
Enitiates a GET request to the mobile validation endpoint.
If the number is unregistered, enables the "Send Code" button.
User submits verification code and password via POST to the registration endpoint.
Backend verifies code against Redis cache, creates user, and returns token-se ...
Posted on Fri, 31 Jul 2026 16:33:10 +0000 by Chris_Evans
Implementing Stateless Authentication and Role-Based Access Control with Spring Security
Core Concepts and Architecture Overview
Spring Security operates as a comprehensive security framework within the Spring ecosystem. Compared to alternatives like Apache Shiro, it offers a broader feature set and a more extensive community. While lightweight applications often favor Shiro for its simplicity, enterprise-grade systems typically re ...
Posted on Sat, 11 Jul 2026 16:02:50 +0000 by PHPBewildered
Implementing OAuth2 Authentication in Django REST Framework with python-social-auth
Weibo Open Platform Setup
Register your application on the Weibo Open Platform to obtain API credentials. After completing developer verification, create a new application to receive your unique App Key and App Secret.
OAuth2.0 Configuration
During development, enable test mode to bypass official review:
Add test user accounts authorized to au ...
Posted on Mon, 06 Jul 2026 16:24:31 +0000 by Eclipse
Implementing Authentication in .NET Core Using Identity and JWT
Setting Up Identity-Based Authentication
1. Install Required NuGet Packages
Begin by adding the Identity framework package to your project:
Install-Package Microsoft.AspNetCore.Identity.EntityFrameworkCore
Install-Package Microsoft.EntityFrameworkCore.SqlServer
2. Define Custom Entity Models
Create domain entities that extend Identity's base c ...
Posted on Sat, 13 Jun 2026 18:11:55 +0000 by webproclaim