


Friends Network’s PHP code related to QQ (excellent information for studying QQ), php is excellent
/***************************************
****************************************/
error_reporting(E_ALL ^ E_NOTICE);
require_once( 'http.inc.php' );
require_once( 'class.Chinese.php');
//成功2xx
define( 'QQ_RETURN_SUCCESS', 200 );
define( 'QQ_LOGIN_SUCCESS', 201 );
define( 'QQ_LIST_NONE', 202 );
define( 'QQ_ADDTOLIST_SUCCESS', 203 );
define( 'QQ_REPLYADD_SUCCESS', 204 );
define( 'QQ_GETMSG_NONE', 205 );
//警告3xx
define( 'QQ_ADDTOLIST_NEEDAUTH',300 );
define( 'QQ_ADDTOLIST_REFUSE', 301 );
define( 'QQ_ADDTOLIST_UNKNOWN', 302 );
//失败4xx
define( 'QQ_RETURN_FAILED', 400 );
define( 'QQ_LIST_ERROR', 401 );
define( 'QQ_GETMSG_ERROR', 402 );
//在线状态
define( 'QQ_STATUS_ONLINE', 10);
define( 'QQ_STATUS_OFFLINE', 20);
define( 'QQ_STATUS_BUSY', 30);
//血型
$QQ_DATA_BT = array
(
=> '',
=> 'A型',
=> 'B型',
=> 'O型',
=> 'AB型',
=> '其他'
);
//星座
$QQ_DATA_CO = array
(
=> '',
=> '水瓶座',
=> '双鱼座',
=> '牡羊座',
=> '金牛座',
=> '双子座',
=> '巨蟹座',
=> '狮子座',
=> '处女座',
=> '天秤座',
=> '天蝎座',
=> '射手座',
=> '摩羯座'
);
//生肖
$QQ_DATA_SH = array
(
=> '',
=> '鼠',
=> '牛',
=> '虎',
=> '兔',
=> '龙',
=> '蛇',
=> '马',
=> '羊',
=> '猴',
=> '鸡',
=> '狗',
=> '猪'
);
//性别
$QQ_DATA_SX = array
(
=> '男',
=> '女'
);
class QQClient
{
var $uin;
var $pwd;
var $server = 'kconn.tencent.com';
//备用:219.133.51.11
var $port = 21001;
//备用:8000
var $httpclient;
var $chs = NULL;
function QQClient($uin,$pwd)
{
$this->uin = $uin;
$this->pwd = $pwd;
}
function encode($str)
/*
说明:把KEY1=VAL1&KEY2=VAL2格式变为数组
*/
{
$arr = explode('&' , $str);
$return = array();
foreach($arr as $k=>$v)
{
list($key,$val) = explode('=',$v);
$return[$key] = $val;
$this->chs = NULL;
}
return $return;
}
function utf8_to_gb2312($str)
{
$this->chs = new Chinese("UTF8","GB2312", $str );
return $this->chs->ConvertIT();
}
function gb2312_to_utf8($str)
{
$this->chs = new Chinese("GB2312","UTF8", $str );
return $this->chs->ConvertIT();
}
function query($str)
{
$this->httpclient = new http( HTTP_V11, true );
$this->httpclient->host = 'kconn.tencent.com';
$this->httpcilent->port = 21001;
$query = $this->encode($str);
$status = $this->httpclient->post( '', $query, '' );
if ( $status == HTTP_STATUS_OK ) {
return $this->httpclient->get_response_body();
}
else
{
print_r($this->httpclient);
return false;
}
$this->httpclient->disconnect();
unset($this->httpclient);
}
function split_str($str)
{
$arr = explode("," , $str);
if($arr[count($arr)-1] == NULL)
{
unset($arr[count($arr)-1]);
}
return $arr;
}
function login()
{
//登陆
//VER=1.1&CMD=Login&SEQ=&UIN=&PS=&M5=1&LC=9326B87B234E7235
$str = "VER=1.1&CMD=Login&SEQ=".rand(1000,9000)."&UIN=".$this->uin."&PS=".md5($this->pwd)."&M5=1&LC=9326B87B234E7235";
$return = $this->encode($this->query($str));
if($return['RES']==0 and $return['UIN'] == $this->uin)
{
//返回成功
if($return['RS']==0)
{
//登陆成功
return QQ_LOGIN_SUCCESS;
}
else
{
//登陆失败
$GLOBALS['QQ_ERROR_MSG'] = $this->utf8_to_gb2312($return['RA']);
return QQ_LOGIN_FAILED;
}
}
else
{
//返回失败
return QQ_RETURN_FAILED;
}
}
function getFriendsList()
{
//Get friends list
//VER=1.1&CMD=List&SEQ=&UIN=&TN=160&UN=0
$str = "VER=1.1&CMD=List&SEQ=".rand(1000,9000)."&UIN=".$this->uin."&TN=160&UN=0";
$return = $this->encode($this->query($str));
If($return['RES']==0 and $return['UIN'] == $this->uin)
{
//Return successfully
return $this->split_str($return['UN']);
}
else
{
//Return failed
return QQ_RETURN_FAILED;
}
}
function getOnlineList()
{
//Get the list of online friends
//VER=1.1&CMD=Query_Stat&SEQ=&UIN=&TN=50&UN=0
$str = "VER=1.1&CMD=Query_Stat&SEQ=".rand(1000,9000)."&UIN=".$this->uin."&TN=50&UN=0";
$return = $this->encode($this->query($str));
If($return['RES']==0 and $return['UIN'] == $this->uin)
{
//Return successfully
If($return['SN'] > 0)
{
//Number of online friends>0
$uns = $this->split_str($return['UN']);
$nks = $this->split_str($return['NK']); // Nickname list
$sts = $this->split_str($return['ST']); //Status list
$fcs = $this->split_str($return['FC']); //Avatar list
$error = 0;
((count($uns)==count($nks))==(count($sts)==count($fcs)))==(count($nks)==count($sts)) ?
$num = count($uns)
:
$error = 1;
;
If($error == 1) return QQ_LIST_ERROR;
$arr = array();
for($i=0;$i
{
$arr[] = array(
"UN" => $uns[$i] ,
"NK" => $this->utf8_to_gb2312($nks[$i]) ,
"ST" => $sts[$i] ,
"FC" => $fcs[$i]
);
}
return ($arr);
}
else
{
//Number of online friends
Return QQ_LIST_NONE;
}
}
else
{
//Return failed
return QQ_RETURN_FAILED;
}
}
function getInfo($uin)
{
//Get friend information
//AD is the contact address, AG is the age, EM is the MAIL, FC is the avatar, HP is the website, JB is the occupation, PC is the zip code, PH is the contact number, PR is the profile, PV is the province, RN is the real name, SC is the graduating school, SX is the gender, UN is the QQ number, and NK is the QQ nickname
//Research on the following annotations by Hackfan
//BT is the blood type, CO is the constellation, CT is the city, CY is the country, MO is the mobile phone, SH zodiac sign
//LV is the number to be queried (1 is simplified query, 2 is normal query, 3 is detailed query)
//CV is unknown, ID is unknown (ID card?), MT is unknown, MV is unknown,
//VER=1.1&CMD=GetInfo&SEQ=&UIN=&LV=3&UN=
$str = "VER=1.1&CMD=GetInfo&SEQ=".rand(1000,9000)."&UIN=".$this->uin."&LV=3&UN=".$uin;
$return = $this->encode($this->query($str));
If($return['RES']==0 and $return['UIN'] == $this->uin)
{
//Return successfully
$arr = array
(
'Ad' = & gt; $ this- & gt; UTF8_TO_GB2312 ($ Return ['Ad']), // Contact address
'Ag' = & gt; $ this- & gt; UTF8_TO_GB2312 ($ Return ['ag']), // age
'Bt' = & gt; $ Return ['bt'], // blood type
'Co' = & gt; $ Return ['Co'], // Constellation
'Ct' = & gt; $ this- & gt; UTF8_TO_GB2312 ($ Return ['ct']), // City
'Cy' = & gt; $ this-& gt; UTF8_TO_GB2312 ($ Return ['cy']), // National
'Em' = & gt; $ this-& gt; UTF8_TO_GB2312 ($ Return ['em']), // email
'Fc' = & gt; $ Return ['fc'], // avatars
'Hp' = & gt; $ this-& gt; UTF8_TO_GB2312 ($ Return ['hp']), // website
'Jb' = & gt; $ this-& gt; UTF8_TO_GB2312 ($ Return ['jb']), // Occupation
'MO' =>
'Pc' = & gt; $ this-& gt; UTF8_TO_GB2312 ($ Return ['pc']), // Postcode
'PH' = & gt; $ this- & gt; UTF8_TO_GB2312 ($ Return ['ph']), // contact phone number
'PR' = & gt; $ this- & gt; UTF8_TO_GB2312 ($ Return ['PR']), // Introduction
'Pv' = & gt; $ this- & gt; UTF8_TO_GB2312 ($ Return ['pv']), // provincial
'Rn' = & gt; $ this-& gt; UTF8_TO_GB2312 ($ Return ['rn']), // The real name
'SC' = & GT; $ this- & gt; UTF8_TO_GB2312 ($ Return ['SC']), // Graduate college
'Sh' = & gt; $ return ['sh'], // zodiac
'SX' =>
'Un' = & gt; $ Return [' un'], // QQ number
'Nk' = & gt; $ this- & gt; UTF8_TO_GB2312 ($ Return ['nk']) // Nickname
);
return $arr;
}
else
{
//Return failed
return QQ_RETURN_FAILED;
}
}
function addFriend($uin)
{
//Add new friend
//VER=1.1&CMD=AddToList&SEQ=&UIN=&UN=
$str = "VER=1.1&CMD=AddToList&SEQ=".rand(1000,9000)."&UIN=".$this->uin."&UN=".$uin;
$return = $this->encode($this->query($str));
If($return['RES']==0 and $return['UIN'] == $this->uin)
{
//Return successfully
switch($return['CD'])
{
case 0 :
//The other party allows anyone to add as a friend
Return QQ_ADDTOLIST_SUCCESS;
break;
case 1:
Return QQ_ADDTOLIST_NEEDAUTH;
break;
case 3:
//No one is allowed to be added as a friend
Return QQ_ADDTOLIST_REFUSE;
break;
to being
//Unknown code
Return QQ_ADDTOLIST_UNKNOWN;
break;
}
}
else
{
//Return failed
return QQ_RETURN_FAILED;
}
}
function replyAdd($uin,$type,$msg)
{
//Respond to add friends
//VER=1.1&CMD=Ack_AddToList&SEQ=&UIN=&UN=&CD=&RS=
//CD is the response status, and CD 0 means “passed verification”. A CD of 1 means "refuse to add the other party as a friend". A CD of 2 means "requesting the other party to be added as a friend". RS is the reason for your request
$str = "VER=1.2&CMD=Ack_AddToList&SEQ=".rand(1000,9000)."&UIN=".$this->uin."&UN=".$uin."&CD=".$type."&RS =".$this->gb2312_to_utf8($msg);
$return = $this->encode($this->query($str));
If($return['RES']==0 and $return['UIN'] == $this->uin)
{
//The server successfully obtained the information
return QQ_RETURN_SUCCESS;
}
else
{
//Failed
return QQ_RETURN_FAILED;
}
}
{
//Delete friends
//VER=1.1&CMD=DelFromList&SEQ=&UIN=&UN=
$str = "VER=1.1&CMD=DelFromList&SEQ=".rand(1000,9000)."&UIN=".$this->uin."&UN=$uin";
$return = $this->encode($this->query($str));
If($return['RES']==0 and $return['UIN'] == $this->uin)
{
//The server successfully obtained the information
return QQ_RETURN_SUCCESS;
}
else
{
//Failed
return QQ_RETURN_FAILED;
}
}
{
//Change status
//VER=1.1&CMD=Change_Stat&SEQ=&UIN=&ST=
//ST is the status to be changed, 10 is online, 20 is offline, and 30 is busy.
$str = "VER=1.1&CMD=Change_stat&SEQ=".rand(1000,9000)."&UIN=".$this->uin."&ST=".$status;
$return = $this->encode($this->query($str));
If($return['RES']==0 and $return['UIN'] == $this->uin)
{
//The server successfully obtained the information
return QQ_RETURN_SUCCESS;
}
else
{
//Failed
return QQ_RETURN_FAILED;
}
}
function logout()
{
//Log out
//VER=1.1&CMD=Logout&SEQ=&UIN=
$str = "VER=1.1&CMD=Logout&SEQ=".rand(1000,9000)."&UIN=".$this->uin;
$return = $this->encode($this->query($str));
If($return['RES']==0 and $return['UIN'] == $this->uin)
{
//The server successfully obtained the information
return QQ_RETURN_SUCCESS;
}
else
{
//Failed
return QQ_RETURN_FAILED;
}
}
function getMsg()
{
//Get news
//VER=1.1&CMD=GetMsgEx&SEQ=&UIN=
//MT represents the message type, 99 represents the system message, and 9 represents the user message. UN represents the user from whom the message is sent, MG represents the message sent, and the MG message can represent some specific system meaning
//When MT=99: MG=10 means the user is online, MG=20 means the user is offline, MG=30 means the user is busy
$str = "VER=1.1&CMD=GetMsgEx&SEQ=".rand(1000,9000)."&UIN=".$this->uin;
$return = $this->encode($this->query($str));
If($return['RES']==0 and $return['UIN'] == $this->uin)
{
//The server successfully obtained the information
If($return['MN'] > 0)
{
//Number of messages>0
$mts = $this->split_str($return['MT']);
$uns = $this->split_str($return['UN']); //Sender number
$mgs = $this->split_str($return['MG']); //Message content
$error = 0;
(count($mts)==count($uns))==(count($uns)==count($mgs))?
$num = count($uns)
:
$error = 1;
;
If($error == 1) return QQ_GETMSG_ERROR; //Something went wrong
$arr = array();
for($i=0;$i
{
$arr[] = array(
"MT" => $mts[$i] ,
"UN" => $uns[$i] ,
"MG" => $this->utf8_to_gb2312($mgs[$i])
);
}
return ($arr);
}
else
{
//Number of online friends
Return QQ_GETMSG_NONE;
}
}
else
{
//Failed
return QQ_RETURN_FAILED;
}
}
function sendMsg($uin,$msg)
{
//Send message
//VER=1.1&CMD=CLTMSG&SEQ=&UIN=&UN=&MG=
$str = "VER=1.1&CMD=CLTMSG&SEQ=".rand(1000,9000)."&UIN=".$this->uin."&UN=".$uin."&MG=".$this-> gb2312_to_utf8($msg);
$return = $this->encode($this->query($str));
If($return['RES']==0 and $return['UIN'] == $this->uin)
{
//The server successfully obtained the information
return QQ_RETURN_SUCCESS;
}
else
{
//Failed
return QQ_RETURN_FAILED;
}
}
}
?>

qq被冻结的原因:1、账号有问题;当系统检测到账号存在被盗风险、出现异常登录、感染盗号木马、病毒等异常情况时,QQ号码会自动进入冻结模式,更有效的保护QQ账号安全。2、账号被他人举报或影响QQ正常使用的操作行为,账号会被冻结;例如向QQ好友或QQ群内频繁的发送广告和垃圾消息、通过非官方版本软件登录QQ、QQ号码登录网络环境存在异常、贩卖违禁品、泄露他人隐私信息等。

qq实名认证一年可以修改一次,更改方法:1、打开手机里的QQ,点击左边的“个人头像”;2、点击“我的QQ钱包”进入;3、点击右上角的“设置”图标;4、点击里面的“实名认证”;5、点击最下方的账户更名;6、选择注销账户,即可重新修改认证。

在我们日常生活中经常会使用QQ对一些图片进行截图,并且QQ截图的快捷键默认都是为Ctrl+Atl+A,但是这个默认的快捷键组合不是所有人都觉得方便,因此很多人都会设置自己习惯的快捷键,如何来设置QQ截图的快捷键?下面,小编给大伙带来了qq截图快捷键设置图文。QQ屏幕截图是一个很好用的截图工具,在使用快捷键的时候,有的用户可能会觉得不是自己喜欢这样的快捷键的组合,或者快捷键的组合已经被其他的软件占用了。那么qq截图快捷键怎么设置?下面,小编就来跟大家介绍qq截图快捷键的设置方法。qq截图快捷键怎么

qq是腾讯的。QQ是1999年2月由腾讯公司推出的一款基于互联网的即时通信网络工具,其标志是一只戴着红色围巾的小企鹅;QQ支持在线聊天、视频通话、点对点断点续传文件、共享文件、网络硬盘、自定义面板、QQ邮箱等多种功能,并可与多种通讯终端相连。

教你如何使用PHP对接QQ接口并实现用户信息查询随着互联网的快速发展,第三方登录成为了各种网站和应用中必不可少的功能之一。用户可以通过第三方账号快速登录,节省注册的时间和精力。而作为国内最大的即时通讯工具之一,QQ登录也成为了很多网站和应用的首选。为了实现QQ登录功能,我们可以通过QQ的接口进行对接。在PHP中,我们可以使用一些开源的库和类来实现对接的功能。

电脑qq和手机qq消息不同步是因为网络连接问题、消息推送设置问题、设备间同步问题、登录状态问题、版本不匹配问题和软件故障。其解决方法如下:1、网络连接问题,确保电脑和手机都连接到稳定的网络,并且网络连接正常;2、消息推送设置问题,确认手机QQ中的消息推送设置是否开启,并设置为在所有设备上接收消息;3、设备间同步问题,确保电脑和手机QQ登录的是同一个QQ账号;4、登录状态问题等。

电脑qq显示已登录不能重复登录是QQ已经在另一个设备上登录了,或者之前的登录还没有完全结束。其解决方法如下:1、QQ可能会因为某些原因卡顿或者出现异常,重启电脑解决;2、浏览器缓存可能会导致QQ无法正常登录,清理浏览器缓存可以解决;3、某些浏览器可能不兼容QQ,更换浏览器可以解决;4、重新安装QQ。

一般来说,整个内网只能上QQ和微信,基本上就是DNS的问题了,比如说,域控服务器上面的DNS转发失效了,那就会出现这样的故障,除非DHCP服务给客户端下发DNS服务器的时候,把内网DNS服务器设置为首选,而把外网的DNS服务器设置为备用,才能避免这个故障。读到这里,很多人会问,为什么不直接用外网的DNS服务器?基本上不可能出故障,何必在内网弄个DNS服务器庸人自扰呢?会问出这样的问题,肯定对域环境很陌生,也就很难解释清楚了,如果在域环境内不使用内部DNS服务器,会产生很多问题,比如域策略无法下发


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
