Table of Contents
Destoon QQ Internet one-click login review failed solution, destoon Internet
The PHP website adds one-click login to QQ Internet. Which file should be changed?
Dear QQ space users: This log did not pass the review because it contains information that does not comply with Internet-related security regulations. It is recommended that you delete it promptly
Home Backend Development PHP Tutorial The solution to the one-click login failure of Destoon QQ Internet, destoon Internet_PHP tutorial

The solution to the one-click login failure of Destoon QQ Internet, destoon Internet_PHP tutorial

Jul 13, 2016 am 10:19 AM

Destoon QQ Internet one-click login review failed solution, destoon Internet

submitted after applying for an account on QQ Internet After the review, after filling in the APPID and KEY in the background, the QQ number you applied for can be logged in normally. However, when QQ Internet was reviewed, it kept failing the review and said "Your website failed the review because" Click the QQ login button to prompt for login. Failure or error message (no jump, failure prompt, error message) ", please confirm that the application meets the review standards before submitting it for review", or "" Prohibits developers from forcing users to re-register or Bind other accounts "".
Error message:


The solution to the one-click login failure of Destoon QQ Internet, destoon Internet_PHP tutorial

Destoon enthusiasts’ solution to this problem is to modify the chip/line.htm template in the template directory file, the specific process is as follows:
Look for "Bind Account" on line 25, modify and replace it with "Switch Account", and add the QQ login icon on line 29 (the review may be faster, and There is an obvious login entrance) {Refer to the compressed package for the code, this code can be added after welcoming guests on line 29}.
The last step is to modify the content in the template/default/member/bind.htm template file (this template is the template page for the one-click login and account binding operation of the third-party platform):
The solution to the one-click login failure of Destoon QQ Internet, destoon Internet_PHP tutorial
Default template The content in it is not allowed by QQ Internet, so it needs to be modified, as shown in the figure below:
The solution to the one-click login failure of Destoon QQ Internet, destoon Internet_PHP tutorial

The purpose of modifying the bind template is to circumvent the restrictions prohibiting registration and binding other accounts. .

In addition, the QQ login access address jumps incorrectly. Please refer to the official submission reference and add the callback URL (domain name).


I revised it many times during the period, and finally passed the review. It should be noted that you must abide by the rules of the QQ Internet platform. After the preliminary preparations are completed, QQ will be opened again. Only by pressing the key to log in will the pass rate be improved.

Attachment: QQ one-click login.rar

Note: There is no guarantee that modifications according to this standard will definitely pass the review, but there is definitely a chance, sometimes It requires character and good preparation, and the chance will be higher. I wish you good luck!

The PHP website adds one-click login to QQ Internet. Which file should be changed?

You use thinkphp, so the code needs to be placed in the template file of the view for verification, and then a separate processing file is created to make the QQ interconnection interface

If none of your friends can access your space but you can enter by yourself, then my congratulations are that you are temporarily blocked.
First of all, there is no need to contact customer service, because this is automatically blocked by Tencent firewall. The solution is as follows:

First, open your own message board and delete all illegal message messages.
Second, open your own photo album and delete all photos from illegal sites.
Third, open your own private log and delete all posts (it is recommended to delete all)
Fourth, open your own log, delete all repost logs, and delete your own violation logs. (It is recommended to delete them all. If you are reluctant, you can use the editing function to clear all log contents. Add them later)
After the update, the system will automatically update once in the middle and late days of each month. If you can't wait and it's not unblocked within 7 days, you can also proactively contact customer service to help you refresh.
From the official team of Tencent QQ Space Diao Zai☺

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/875725.htmlTechArticleDestoon QQ Internet one-click login review failed solution, destoon Internet submitted it after applying for an account on QQ Internet After review, fill in the APPID and KEY in the background and apply for a QQ number...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Framework Security Features: Protecting against vulnerabilities. Framework Security Features: Protecting against vulnerabilities. Mar 28, 2025 pm 05:11 PM

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

Customizing/Extending Frameworks: How to add custom functionality. Customizing/Extending Frameworks: How to add custom functionality. Mar 28, 2025 pm 05:12 PM

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

What exactly is the non-blocking feature of ReactPHP? How to handle its blocking I/O operations? What exactly is the non-blocking feature of ReactPHP? How to handle its blocking I/O operations? Apr 01, 2025 pm 03:09 PM

An official introduction to the non-blocking feature of ReactPHP in-depth interpretation of ReactPHP's non-blocking feature has aroused many developers' questions: "ReactPHPisnon-blockingbydefault...

See all articles