Home Backend Development PHP Tutorial PHP simulates QQ login code

PHP simulates QQ login code

Jun 18, 2020 pm 01:27 PM
php qq

PHP simulates QQ login code

php simulates qq login code

This article describes how to simulate qq login in php. The principle is to use curl simulates sending a post to log in, and the cookie is saved locally. The code theory here can support permanent single-link QQ. Let us take a look below.

<?php
$qqno='你的QQ';
$qqpw='QQ密码';
$cookie = dirname(__FILE__).'/cookie.txt';
$post = array(
    'login_url' => 'http://pt.3g.qq.com/s?sid=ATAll43N7ZULRQ5V8zdfojol&aid=nLogin',
    'q_from' => '',
    'loginTitle' => 'login',
    'bid' => '0',
    'qq' => $qqno,
    'pwd' => $qqpw,
    'loginType' => '1',
    'loginsubmit' => 'login',
);
$curl = curl_init('http://pt.3g.qq.com/handleLogin?aid=nLoginHandle&sid=ATAll43N7ZULRQ5V8zdfojol');
curl_setopt($curl, CURLOPT_HEADER, 0);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie); // ?Cookie
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($post));
$result = curl_exec($curl);
curl_close($curl);
?>
Copy after login

Thank you everyone for reading, have you learned it?

This article is reproduced from: http://community.itbbs.cn/thread/21261/

Recommended tutorial: "php tutorial"

The above is the detailed content of PHP simulates QQ login code. For more information, please follow other related articles on the PHP Chinese website!

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 Article

Hot Article

Hot Article Tags

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)

What is the original price of melania coins? How much USD is expected to rise to melania What is the original price of melania coins? How much USD is expected to rise to melania Feb 15, 2025 pm 05:06 PM

What is the original price of melania coins? How much USD is expected to rise to melania

What software can make Bitcoin? Top 10 Bitcoin Trading Software Recommendations in 2025 What software can make Bitcoin? Top 10 Bitcoin Trading Software Recommendations in 2025 Feb 21, 2025 pm 09:30 PM

What software can make Bitcoin? Top 10 Bitcoin Trading Software Recommendations in 2025

gateio exchange app old version gateio exchange app old version download channel gateio exchange app old version gateio exchange app old version download channel Mar 04, 2025 pm 11:36 PM

gateio exchange app old version gateio exchange app old version download channel

Which is the best market viewing software? Top 10 virtual currency exchange market viewing software Which is the best market viewing software? Top 10 virtual currency exchange market viewing software Feb 21, 2025 pm 09:48 PM

Which is the best market viewing software? Top 10 virtual currency exchange market viewing software

Summary of essential software for 2025 currency circle Summary of essential software for 2025 currency circle Feb 21, 2025 pm 09:42 PM

Summary of essential software for 2025 currency circle

Ouyi official login entrance 2025 Ouyi okx trading platform official version entrance Ouyi official login entrance 2025 Ouyi okx trading platform official version entrance Feb 15, 2025 pm 07:15 PM

Ouyi official login entrance 2025 Ouyi okx trading platform official version entrance

Top 10 Currency Trading App Platforms List The latest ranking of the top 10 Currency Exchanges Top 10 Currency Trading App Platforms List The latest ranking of the top 10 Currency Exchanges Feb 21, 2025 pm 09:33 PM

Top 10 Currency Trading App Platforms List The latest ranking of the top 10 Currency Exchanges

The latest price of Bitcoin in 2018-2024 USD The latest price of Bitcoin in 2018-2024 USD Feb 15, 2025 pm 07:12 PM

The latest price of Bitcoin in 2018-2024 USD

See all articles