Tag

login

1 views collected around this technical thread.

Selected Java Interview Questions
Selected Java Interview Questions
Apr 1, 2025 · Information Security

Understanding QR Code Login: Principles, Token Authentication, and Implementation Steps

This article explains the fundamentals of QR code login, detailing how QR codes work, the token‑based authentication mechanism, and the step‑by‑step process—including QR code generation, scanning, temporary token exchange, and final confirmation—that enables secure cross‑device login without exposing passwords.

AuthenticationQR codelogin
0 likes · 12 min read
Understanding QR Code Login: Principles, Token Authentication, and Implementation Steps
Architecture Digest
Architecture Digest
Mar 25, 2025 · Information Security

Understanding QR Code Login: Principles, Token Authentication, and Implementation Steps

This article explains the fundamentals of QR code login, detailing how QR codes convey unique IDs, the token‑based authentication process, the steps from QR generation to device verification, and the security considerations involved in implementing scan‑to‑login across web and mobile platforms.

AuthenticationQR codebackend
0 likes · 11 min read
Understanding QR Code Login: Principles, Token Authentication, and Implementation Steps
Code Ape Tech Column
Code Ape Tech Column
Mar 23, 2025 · Information Security

Understanding QR Code Login: Principles, Token Authentication, and Process Flow

This article explains the fundamentals of QR code login, covering QR code basics, token‑based authentication, the step‑by‑step process from QR generation to device polling, scanning, confirmation, and token exchange, and discusses security considerations and implementation details for web, PC, and mobile platforms.

QR codeWeb Securitylogin
0 likes · 11 min read
Understanding QR Code Login: Principles, Token Authentication, and Process Flow
Architect's Guide
Architect's Guide
Dec 16, 2024 · Information Security

Understanding the Mechanics of QR Code Login and Token‑Based Authentication

This article explains how QR code login works by describing QR code fundamentals, token‑based authentication, and the step‑by‑step process—including QR generation, scanning, state transitions, and final confirmation—that enables a mobile device to securely authenticate a PC session.

AuthenticationQR codebackend
0 likes · 11 min read
Understanding the Mechanics of QR Code Login and Token‑Based Authentication
Java Tech Enthusiast
Java Tech Enthusiast
Jul 13, 2024 · Backend Development

Implementing Captcha Login with Spring Boot and Redis

The guide demonstrates how to build a front‑end/back‑end separated captcha login using Spring Boot, Kaptcha and Redis, showing Redis‑based captcha storage with a unique key, Base64 image delivery, and verification logic that replaces traditional session‑based approaches.

APIJavaRedis
0 likes · 12 min read
Implementing Captcha Login with Spring Boot and Redis
php中文网 Courses
php中文网 Courses
Apr 29, 2024 · Backend Development

Implementing User Login, Logout, and Multi-Level Role-Based Access Control with PHP

This article demonstrates how to create a user authentication system in PHP, covering database table design, login and logout functions, password verification, session handling, and a role‑based permission check to enable multi‑level access control for secure web applications.

AuthenticationLogoutMySQL
0 likes · 5 min read
Implementing User Login, Logout, and Multi-Level Role-Based Access Control with PHP
High Availability Architecture
High Availability Architecture
Apr 15, 2024 · Information Security

Evolution and Design of Login Authentication Systems

This article reviews the historical evolution of login authentication—from simple username/password in monolithic apps to token mechanisms, unified account centers, OAuth, and sub‑tokens—while also presenting modern one‑click, trusted‑device, and facial‑verification login methods and future AI‑driven security trends.

AuthenticationOAuthidentity
0 likes · 13 min read
Evolution and Design of Login Authentication Systems
Architecture Digest
Architecture Digest
Mar 27, 2024 · Information Security

Understanding QR Code Login: Principles, Token Authentication, and Implementation Steps

This article explains the fundamentals of QR code login, covering how QR codes work, the token‑based authentication mechanism, and the step‑by‑step process—from QR code generation and scanning to token exchange and final login confirmation—while highlighting security considerations.

AuthenticationQR codelogin
0 likes · 11 min read
Understanding QR Code Login: Principles, Token Authentication, and Implementation Steps
Java Tech Enthusiast
Java Tech Enthusiast
Mar 13, 2024 · Information Security

Understanding QR Code Login and Token-Based Authentication

QR‑code login lets a already‑authenticated mobile app scan a code shown on a PC, using a server‑issued token tied to the user’s account and device ID; the scan creates a temporary token, the user confirms, and a permanent token is issued to the PC, enabling password‑less, secure authentication.

AuthenticationQR codebackend
0 likes · 11 min read
Understanding QR Code Login and Token-Based Authentication
php中文网 Courses
php中文网 Courses
Feb 18, 2024 · Backend Development

Secure User Login and Logout Implementation in PHP

This article explains how to securely implement user login and logout functionality in PHP by using session management, server‑side validation, and CSRF token protection, providing sample code for authentication, session handling, and safe logout procedures.

AuthenticationCSRFLogout
0 likes · 6 min read
Secure User Login and Logout Implementation in PHP
Selected Java Interview Questions
Selected Java Interview Questions
Jan 18, 2024 · Backend Development

Understanding QR Code Login: Principles, Token Authentication, and Implementation Steps

This article explains the fundamentals of QR code login, describing how QR codes work, the token‑based authentication mechanism, and the step‑by‑step process from QR code generation on the PC to scanning, confirmation, and token exchange that securely logs a user into the system.

AuthenticationQR codebackend
0 likes · 12 min read
Understanding QR Code Login: Principles, Token Authentication, and Implementation Steps
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Dec 8, 2023 · Mobile Development

Step-by-Step Guide to Building a HarmonyOS Demo App with Login, Register, and Home Pages

This tutorial walks through creating a complete HarmonyOS demo project without backend integration, covering project setup, constant files, login and registration pages, navigation tabs, home page components, search, list, refresh, and custom input components, all illustrated with code snippets and screenshots.

ArkUICodeLabsHarmonyOS
0 likes · 10 min read
Step-by-Step Guide to Building a HarmonyOS Demo App with Login, Register, and Home Pages
Java Architect Essentials
Java Architect Essentials
Nov 19, 2023 · Backend Development

Designing a Multi‑Account Unified Login System: From Phone Number Authentication to Third‑Party Integration

This article explains how to design a scalable multi‑account login system, covering self‑built phone‑number authentication, optimized password‑less flows, third‑party integrations such as Weibo and WeChat, a refactored user‑basic and authorization schema, and the steps for implementing one‑click carrier‑based login.

AuthenticationDatabase Designbackend
0 likes · 14 min read
Designing a Multi‑Account Unified Login System: From Phone Number Authentication to Third‑Party Integration
Architecture Digest
Architecture Digest
Nov 2, 2023 · Backend Development

Designing a Scalable Multi‑Account Login System: From Phone Number Registration to One‑Click Login

This article outlines the design of a flexible multi‑account authentication system, covering self‑built phone‑number registration, optimized password‑less login, integration of third‑party providers such as Weibo and WeChat, a split user/base‑authorization database schema, and a carrier‑based one‑click login flow.

AuthenticationDatabaseaccount design
0 likes · 10 min read
Designing a Scalable Multi‑Account Login System: From Phone Number Registration to One‑Click Login
Selected Java Interview Questions
Selected Java Interview Questions
Oct 4, 2023 · Backend Development

Implementing Captcha‑Based Login in a Frontend‑Backend Separated Spring Boot Application

This article demonstrates how to implement a captcha‑based login mechanism in a Spring Boot application with a front‑end/back‑end separation, detailing the traditional session‑based approach, the new Redis‑backed token solution, and providing complete code examples for configuration, service, controller, and data objects.

KaptchaRedisSpring Boot
0 likes · 12 min read
Implementing Captcha‑Based Login in a Frontend‑Backend Separated Spring Boot Application
Laravel Tech Community
Laravel Tech Community
Sep 14, 2023 · Backend Development

Implementing WeChat OAuth Login with PHP

This article explains how to implement WeChat OAuth login in a PHP web application, detailing required prerequisites, the authorization flow with URL endpoints, and providing a complete PHP function that exchanges the code for an access token, refreshes it if needed, and retrieves the user's nickname and avatar for storage.

OAuthPHPWeChat
0 likes · 5 min read
Implementing WeChat OAuth Login with PHP
Top Architecture Tech Stack
Top Architecture Tech Stack
Aug 31, 2023 · Information Security

Design of QR Code Login Functionality

This article explains the three-stage design of a QR code login system—including pending scan, scanned‑pending‑confirmation, and confirmed phases—detailing how unique QR IDs, token exchange, and user confirmation ensure secure authentication across PC and mobile devices.

AuthenticationQR codebackend
0 likes · 5 min read
Design of QR Code Login Functionality
php中文网 Courses
php中文网 Courses
Aug 29, 2023 · Backend Development

Implementing Phone Verification Login with PHP

This article explains how to implement a phone‑verification login system using PHP, covering front‑end page design, AJAX‑based code sending, and server‑side validation with example code snippets for HTML, JavaScript, and PHP integration.

AJAXPHPPhone Verification
0 likes · 6 min read
Implementing Phone Verification Login with PHP
php中文网 Courses
php中文网 Courses
Aug 19, 2023 · Backend Development

Implementing Email Verification for Login and Registration with PHP

This article explains how to build a secure email‑verification login and registration system using PHP and MySQL, covering database schema creation, user registration with verification code generation and email sending, verification link handling, and login validation, with full code examples.

Email VerificationMySQLPHP
0 likes · 5 min read
Implementing Email Verification for Login and Registration with PHP
php中文网 Courses
php中文网 Courses
May 29, 2023 · Backend Development

Implementing a Browser Login Limit with PHP

This article explains how to restrict the number of concurrent browser logins for a user account by storing login details in a database or Redis, comparing browser agent strings, and returning appropriate error messages, with full PHP code examples.

Databasebackendlogin
0 likes · 8 min read
Implementing a Browser Login Limit with PHP