Tag

OAuth

0 views collected around this technical thread.

Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
May 4, 2025 · Frontend Development

A Front‑End Developer’s Guide to Integrating WeChat QR‑Code Login

This step‑by‑step tutorial walks front‑end developers through the entire process of integrating WeChat QR‑code login, covering prerequisite checklist, platform setup, core JavaScript SDK usage, callback handling, common pitfalls, security hardening, performance tweaks, debugging tricks, and a learning roadmap.

Front-endOAuthWeChat Login
0 likes · 10 min read
A Front‑End Developer’s Guide to Integrating WeChat QR‑Code Login
macrozheng
macrozheng
Jan 3, 2025 · Operations

How to Install Xiaomi’s Official Home Assistant Integration and Boost Your Smart Home

This article introduces Xiaomi’s open‑source Home Assistant integration, explains its benefits over third‑party solutions, and provides step‑by‑step instructions—including git commands—to install, update, and securely configure the component for managing Xiaomi IoT devices within Home Assistant.

Home AssistantIntegrationIoT
0 likes · 6 min read
How to Install Xiaomi’s Official Home Assistant Integration and Boost Your Smart Home
Architect
Architect
Nov 21, 2024 · Information Security

Common Authentication Methods: HTTP Basic, Session‑Cookie, Token, and OAuth

This article reviews four widely used authentication mechanisms—HTTP Basic Authentication, session‑cookie, token‑based verification (including JWT), and OAuth—explaining their workflows, security characteristics, implementation details with Node.js/Express code samples, and comparative advantages for different application scenarios.

AuthenticationHTTP BasicNode.js
0 likes · 18 min read
Common Authentication Methods: HTTP Basic, Session‑Cookie, Token, and OAuth
Architect
Architect
Jul 10, 2024 · Information Security

Evolution and Design of Login Authentication Systems

This article examines the historical evolution of login authentication technologies, from simple cookie‑based methods to token mechanisms, unified account centers, OAuth 2.0, and modern one‑click solutions, while discussing design considerations, security challenges, and future trends such as AI‑driven identity verification.

Identity ManagementLogin AuthenticationOAuth
0 likes · 12 min read
Evolution and Design of Login Authentication Systems
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.

AuthenticationOAuthUser Experience
0 likes · 13 min read
Evolution and Design of Login Authentication Systems
Architecture Development Notes
Architecture Development Notes
Jan 1, 2024 · Information Security

How to Build a Secure User Authentication Architecture: Key Principles and Protocols

This article explains the essential components of user authentication architecture, covering its importance, core principles, registration, login, session management, popular protocols like OAuth, OpenID Connect, SAML, JWT, and critical security considerations for robust protection.

AuthenticationMFAOAuth
0 likes · 8 min read
How to Build a Secure User Authentication Architecture: Key Principles and Protocols
Code Ape Tech Column
Code Ape Tech Column
Dec 22, 2023 · Backend Development

JustAuth: A Simple Java Library for Third‑Party OAuth Login Integration

JustAuth is a Java library that simplifies third‑party OAuth login by providing unified interfaces, customizable state, scopes, HTTP clients, and support for dozens of platforms, with clear code examples for quick integration such as QQ login.

AuthenticationJavaJustAuth
0 likes · 6 min read
JustAuth: A Simple Java Library for Third‑Party OAuth Login Integration
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.

BackendOAuthPHP
0 likes · 5 min read
Implementing WeChat OAuth Login with PHP
Java Architecture Diary
Java Architecture Diary
Mar 28, 2023 · Information Security

Understanding OAuth 2.0 Device Authorization Flow (RFC 8628)

OAuth 2.0 Device Authorization (RFC 8628) defines a secure flow for granting access tokens to devices lacking browsers or input capabilities, detailing the roles of client devices, authorization servers, user codes, device codes, polling, and token issuance, illustrated with a TV‑mobile example.

Device FlowOAuthRFC8628
0 likes · 3 min read
Understanding OAuth 2.0 Device Authorization Flow (RFC 8628)
Top Architect
Top Architect
Nov 23, 2022 · Information Security

Comprehensive Guide to Front‑End Authentication and Authorization Methods

This article provides an in‑depth overview of authentication, authorization, and permission control concepts and compares ten common front‑end authentication techniques—including HTTP Basic Auth, Session‑Cookie, Token, JWT, SSO, OAuth 2.0, QR‑code login and one‑click login—detailing their workflows, advantages, drawbacks, and typical usage scenarios.

AuthenticationJWTOAuth
0 likes · 39 min read
Comprehensive Guide to Front‑End Authentication and Authorization Methods
IT Architects Alliance
IT Architects Alliance
Nov 17, 2022 · Information Security

Comprehensive Guide to Frontend Authentication Methods and Their Differences

This article explains the concepts, relationships, and practical implementations of authentication, authorization, and access control, and compares ten common frontend authentication methods—including HTTP Basic, Session‑Cookie, Token, JWT, SSO, OAuth, and QR‑code login—detailing their workflows, advantages, disadvantages, and suitable scenarios.

AuthenticationJWTOAuth
0 likes · 37 min read
Comprehensive Guide to Frontend Authentication Methods and Their Differences
Top Architect
Top Architect
Nov 4, 2022 · Information Security

Common Authentication Methods: HTTP Basic, Session‑Cookie, Token, and OAuth

This article reviews four widely used authentication mechanisms—HTTP Basic authentication, session‑cookie based authentication, token (JWT) authentication, and OAuth 2.0—explaining their workflows, security characteristics, and providing Node.js/Express code examples for each.

AuthenticationExpressHTTP Basic
0 likes · 18 min read
Common Authentication Methods: HTTP Basic, Session‑Cookie, Token, and OAuth
Baidu Geek Talk
Baidu Geek Talk
Apr 25, 2022 · Information Security

Design and Implementation of Baidu ToB Account Permission Platform: Login Services, SSO, OAuth, and GD‑RBAC

Baidu’s ToB Account Permission Platform provides a unified, configurable login and permission service—including multi‑tenant account management, SSO, OAuth, and the GD‑RBAC model—delivering secure, high‑performance access for over ten million enterprise accounts across multiple product lines.

AuthenticationBackendOAuth
0 likes · 27 min read
Design and Implementation of Baidu ToB Account Permission Platform: Login Services, SSO, OAuth, and GD‑RBAC
Top Architect
Top Architect
Jan 11, 2022 · Information Security

Comprehensive Guide to Authentication: UI Login, API Call Verification, SSO, and CAS

This article provides a detailed overview of authentication mechanisms, covering UI login methods such as Basic, LDAP, OAuth, Kerberos, and SSO, API call verification techniques like HMAC and JWT, and practical design guidelines for implementing SSO with CAS in micro‑service architectures.

AuthenticationCASHMAC
0 likes · 18 min read
Comprehensive Guide to Authentication: UI Login, API Call Verification, SSO, and CAS
Top Architect
Top Architect
Dec 7, 2021 · Backend Development

Implementing Token Generation and Validation in a Java Backend Using JWT

This article explains how to generate, store, and validate anti‑duplicate submission tokens in a Java web application by using a custom TokenProcessor, TokenTools utilities, and a JWT‑based OAuthTokenManager, covering both frontend button handling and backend verification logic.

BackendJWTJava
0 likes · 12 min read
Implementing Token Generation and Validation in a Java Backend Using JWT
Architecture Digest
Architecture Digest
Nov 19, 2021 · Information Security

Comprehensive Guide to Authentication: Types, Protocols, and Design for Web and API Services

This article provides an in‑depth overview of authentication, covering both UI login and API call methods such as Basic, LDAP, OAuth, Kerberos, SSO, HMAC, and JWT, and explains how to design secure, cross‑domain authentication components within micro‑service architectures.

AuthenticationCASJWT
0 likes · 18 min read
Comprehensive Guide to Authentication: Types, Protocols, and Design for Web and API Services
Java Architect Essentials
Java Architect Essentials
Mar 3, 2021 · Information Security

Seven Open‑Source OAuth and SSO Projects for Developers

This article introduces seven open‑source OAuth/SSO solutions—including oauth2‑shiro, tkey, MaxKey, spring‑lhbauth, oauth2, oauthserver, and JustAuth—detailing their features, supported protocols, and repository links to help developers implement secure authentication and token management in web and mobile applications.

AuthenticationJavaOAuth
0 likes · 5 min read
Seven Open‑Source OAuth and SSO Projects for Developers
Java Architecture Diary
Java Architecture Diary
Feb 24, 2021 · Information Security

What’s New in JustAuthPlus v1.0.0? Features, Updates, and Enhanced Authentication

JustAuthPlus v1.0.0, released on February 18 2021, introduces a TOTP module, one‑click logout, updated scripts, extensive refactoring, and a suite of authentication features such as SSO, OAuth, OIDC, SAML, and multi‑language support, positioning it as a versatile open‑source login middleware.

AuthenticationJavaOAuth
0 likes · 7 min read
What’s New in JustAuthPlus v1.0.0? Features, Updates, and Enhanced Authentication
360 Tech Engineering
360 Tech Engineering
Nov 9, 2020 · Information Security

Guide to Common Authentication Methods: HTTP Auth, Cookie + Session, JWT, and OAuth

This article explains the principles and workflows of typical authentication mechanisms—including HTTP Basic authentication, cookie‑based sessions, JSON Web Tokens, and OAuth—detailing their encryption processes, storage strategies, token refresh techniques, and security considerations for modern web applications.

AuthenticationHTTPJWT
0 likes · 12 min read
Guide to Common Authentication Methods: HTTP Auth, Cookie + Session, JWT, and OAuth
php中文网 Courses
php中文网 Courses
Nov 3, 2020 · Backend Development

Integrating QQ Login with PHP: Step‑by‑Step Guide

This tutorial explains how to integrate QQ third‑party login into a PHP website by obtaining QQ Connect credentials, downloading and configuring the SDK, adding the necessary OAuth code, creating a login button, and handling the callback to retrieve user information.

OAuthQQ LoginSDK
0 likes · 4 min read
Integrating QQ Login with PHP: Step‑by‑Step Guide