基于HTTP的QQ协议代码,Python实现登陆等操作!

基于HTTP的QQ协议代码,Python实现登陆等操作!

作者:梅劲松

[Copy to clipboard] [ - ]
CODE:
# -*- coding: cp936 -*-
"""2005-06-15
看到微程朋友分析基于http的QQ协议,于是准备写一个QQ程序。但是现在http中的有些包已经不能用了。
我只有继续使用socket的协议了。感谢微程朋友的帮助。关于协议大家可以看他的blog
http://spaces.msn.com/members/mprogramer/Blog/cns!1pKnbff3FpJuGZcrsAlNZmZQ!147.entry
本程序为MIT授权
如果需要转载本程序,请保留版权信息"""
import urllib,httplib,md5,time
class qq:
    def __init__(self):
        self.pwd=md5.new('你的QQ密码').hexdigest()
        self.headers=""
        self.qq='你的QQ号码'
        self.conn= httplib.HTTPConnection("219.133.51.11:8000")#这里是tqq.tencent.com的ip地址,也可以直接用域名

    def Login(self):#登陆
        self.headers=("VER=1.0&CMD=Login&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq+"&PS="+\
                      self.pwd+\
                      "&M5=1&LC=9326B87B234E7235")
        
        self.conn.request("POST","", self.headers)
        response = self.conn.getresponse()                                      
        print response.read()
        
    def Query_Stat(self):#在线好友
        self.headers=("VER=1.0&CMD=Query_Stat&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq+"&TN=50&UN=0")
                     
        self.conn.request("POST","", self.headers)
        response = self.conn.getresponse()                                      
        print response.read()
        
    def List(self):#好友列表
        self.headers=("VER=1.0&CMD=List&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq+"TN=160&UN=0")
        
        self.conn.request("POST","", self.headers)
        response = self.conn.getresponse()                                      
        print response.read()

    def GetInfo(self):#指定QQ号码的详细内容
        self.headers=("VER=1.0&CMD=GetInfo&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq+"&LV=2&UN=40900181")
        
        self.conn.request("POST","", self.headers)
        response = self.conn.getresponse()                                      
        print response.read()

    def AddToList(self):#增加指定QQ号码为好友
        self.headers=("VER=1.0&CMD=AddToList&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq+"&UN=278333853")
        
        self.conn.request("POST","", self.headers)
        response = self.conn.getresponse()                                      
        print response.read()

test=qq()
test.Login()
"""不知道为什么除了Login和Logout包其他的都有问题。很郁闷"""
#test.Query_Stat()
test.List()
#test.conn.close()
#test.GetInfo()

login也不行阿
login是可以的,我等会将修改好的程序发上来.
作者:梅劲松

[Copy to clipboard] [ - ]
CODE:
# -*- coding: cp936 -*-
"""2005-06-15
看到微程朋友分析基于http的QQ协议,于是准备写一个QQ程序。原以为有些包不能用了,后来灰衣人朋友的帮助下,才知道http通讯需要打开一次,关闭一次的。而不能象socket样,一直打开不关闭。
感谢微程和灰衣人朋友的帮助。关于协议大家可以看他的blog
http://spaces.msn.com/members/mprogramer/Blog/cns!1pKnbff3FpJuGZcrsAlNZmZQ!147.entry
本程序为MIT授权
如果需要转载本程序,请保留版权信息"""
import urllib,httplib,md5,time
class qq:
    def __init__(self,qq="",pwd=""):
        self.pwd=md5.new(pwd).hexdigest()
        self.headers=""
        self.qq=qq
        

    def getdata(self):
        self.conn= httplib.HTTPConnection("tqq.tencent.com:8000")#这里是tqq.tencent.com的ip地址,也可以直接用域名
        self.conn.request("POST","", self.headers)
        response = self.conn.getresponse()                                      
        print response.read().decode('utf-8').encode("cp936")
        self.conn.close

    def Login(self):#登陆
        self.headers=("VER=1.0&CMD=Login&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq+"&PS="+\
                      self.pwd+\
                      "&M5=1&LC=9326B87B234E7235")
        self.getdata()      
        
        
    def Query_Stat(self):#在线好友
        self.headers=("VER=1.0&CMD=Query_Stat&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq+"&TN=50&UN=0")
                     
        self.getdata()
        
    def List(self):#好友列表
        self.headers=("VER=1.0&CMD=List&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq+"&TN=160&UN=0")
        
        self.getdata()

    def GetInfo(self,friend=""):#指定QQ号码的详细内容
        self.headers=("VER=1.0&CMD=GetInfo&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq+"&LV=2&UN="+\
                      friend)
        
        self.getdata()

    def AddToList(self,friend=""):#增加指定QQ号码为好友
        self.headers=("VER=1.0&CMD=AddToList&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq+"&UN="+\
                      friend)
        
        self.getdata()

    def GetMsg(self):#获取消息
        self.headers=("VER=1.0&CMD=GetMsgEx&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq)
        
        self.getdata()

    def SendMsg(self,friend="",msg=""):#发送消息
        self.headers=("VER=1.0&CMD=CLTMSG&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq+"&UN="+\
                      friend+"&MG="+\
                      msg.decode("cp936").encode('utf-8'))
        
        self.getdata()

    def Logout(self):#退出登陆
        self.headers=("VER=1.0&CMD=Logout&SEQ="+\
                      str(int(time.time()*100)%(10**5))+"&UIN="+\
                      self.qq)
        
        self.getdata()

test=qq('号码','密码')
test.Login()
test.Query_Stat()
test.List()
test.GetInfo('他人QQ号码')
test.AddToList('他人QQ号码')
test.GetMsg()
i=0
while i<1000:
    print i
    time.sleep(0.9)
    test.SendMsg('他人QQ号码',"一共有1000条消息,这是第"+str(i)+"条消息")
    i = i+1
test.Logout()

OK
好使
你是怎么发现QQ也可以走HTTP协议的阿
我们平时的QQ应该不是用这样的协议吧?
这个是手机上运行的KjavaQQ所用的协议.目前我在做socket方面的协议.
希望能开发出一个python版的QQ.
good! thanks a lot. i can use qq on fedora


QUOTE:
原帖由 "xichen" 发表:
这个是手机上运行的KjavaQQ所用的协议.目前我在做socket方面的协议.
希望能开发出一个python版的QQ.

原来如彼
手机上QQ不是要钱的吗
怎么可以随便上了
为什么不在libeva的基础上进行开发?
如果您没有听说过libeva的话,可以到www.linuxfans.org上查看
当然如果存在版权方面的问题的话,那就算了
谢谢我会去看看你提到的libeva。