欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP模拟QQ登录的方法

程序员文章站 2023-12-06 11:54:04
本文实例讲述了php模拟qq登录的方法。分享给大家供大家参考。具体实现方法如下: 原理是用curl模拟发送post登录,cookie保存本地 这样理论上可以支持永久单挂...

本文实例讲述了php模拟qq登录的方法。分享给大家供大家参考。具体实现方法如下:

原理是用curl模拟发送post登录,cookie保存本地

这样理论上可以支持永久单挂qq

<?php 
//http://blog.qita.in 非技术[s.t]
$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);
?>

希望本文所述对大家的php程序设计有所帮助。