python 获取微信好友列表的方法(微信web)

 更新时间:2019年02月21日 08:49:24   作者:BusyMonkey  
今天小编就为大家分享一篇python 获取微信好友列表的方法(微信web),具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

Python客栈送红包、纸质书

如下所示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
import urllib
import urllib2
import os
import time
import re
import cookielib
import xml.dom.minidom
import json
  
tip = 0
uuid = ''
successUrl = ''
skey = ''
wxsid = ''
wxuin = ''
pass_ticket = ''
deviceId = 'e000000000000000'
imagesPath = os.getcwd() + '/weixin.jpg'
  
BaseRequest = {}
base_uri = ''
push_uri = ''
  
def getUUID():
  global uuid
  url = 'https://login.weixin.qq.com/jslogin'
  values = {
    'appid':'wx782c26e4c19acffb',
    'redirect_uri':'https://wx.qq.com/cgi-bin/mmwebwx-bin/webwxnewloginpage',
    'fun':'new',
    'lang':'zh_CN',
    '_':int(time.time())
  }
  request = urllib2.Request(url=url, data=urllib.urlencode(values)) 
  response = urllib2.urlopen(request)
  data = response.read()
  print data
    
  regx = r'window.QRLogin.code = (\d+); window.QRLogin.uuid = "(\S+?)"'
  pm = re.search(regx, data)
  code = pm.group(1)
  uuid = pm.group(2)
  print code, uuid
    
  if code == '200':
    return True
  return False
  
def show2DimensionCode():
  global tip
  
  url = 'https://login.weixin.qq.com/qrcode/' + uuid
  values = {
    't':'webwx',
    '_':int(time.time())
  }
  
  request = urllib2.Request(url=url, data=urllib.urlencode(values))
  response = urllib2.urlopen(request)
  tip = 1
  
  f = open(imagesPath, 'wb')
  f.write(response.read())
  f.close()
  time.sleep(1)
  os.system('call %s' % imagesPath)
  print u'please sacn qcode by your phone'.encode('GBK')
   
def isLoginSucess():
  global successUrl, base_uri, push_uri
   
  url = 'https://login.weixin.qq.com/cgi-bin/mmwebwx-bin/login?tip=%s&uuid=%s&_=%s' % (tip, uuid, int(time.time()))
  request = urllib2.Request(url=url)
  response = urllib2.urlopen(request)
  data = response.read()
  print data
  regx = r'window.code=(\d+)'
  regxLogin = r'window.redirect_uri="(\S+?)"'
  pm = re.search(regx, data)
  pmLogin = re.search(regxLogin, data)
  code = pm.group(1)
  if pmLogin != None:
   successUrl = pmLogin.group(1) + '&fun=new&version=v2'
  
  if code == '201':
    print'Scan QR code successfully!'
  elif code == '200':
    print'Logining...'
    services = [
     ('wx2.qq.com', 'webpush2.weixin.qq.com'),
     ('qq.com', 'webpush.weixin.qq.com'),
     ('web1.wechat.com', 'webpush1.wechat.com'),
     ('web2.wechat.com', 'webpush2.wechat.com'),
     ('wechat.com', 'webpush.wechat.com'),
     ('web1.wechatapp.com', 'webpush1.wechatapp.com'),
    ]
    base_uri = successUrl[:successUrl.rfind('/')]
    push_uri = base_uri
    for (searchUrl, pushUrl) in services:
     if base_uri.find(searchUrl) >= 0:
      push_uri = 'https://%s/cgi-bin/mmwebwx-bin' % pushUrl
      break
  elif code == '408':
    print'Login Timeout!'
  
  return code 
  
def webwxnewloginpage():
 global successUrl, skey, wxsid, wxuin, pass_ticket, BaseRequest
  
 request = urllib2.Request(url=successUrl)
 response = urllib2.urlopen(request)
 data = response.read()
  
 doc = xml.dom.minidom.parseString(data)
 root = doc.documentElement
  
 for node in root.childNodes:
  if node.nodeName == 'skey':
   skey = node.childNodes[0].data
  elif node.nodeName == 'wxsid':
   wxsid = node.childNodes[0].data
  elif node.nodeName == 'wxuin':
   wxuin = node.childNodes[0].data
  elif node.nodeName == 'pass_ticket':
   pass_ticket = node.childNodes[0].data
    
 BaseRequest = {
  'Uin': wxuin,
  'Sid': wxsid,
  'Skey': skey,
  'DeviceID': deviceId,
 }
  
def webwxinit():
 global skey, pass_ticket, BaseRequest, base_uri
  
 url = (base_uri + '/webwxinit?pass_ticket=%s&skey=%s&r=%s' % (pass_ticket, skey, int(time.time())))
 params = {'BaseRequest': BaseRequest}
 headers = {'content-type': 'application/json; charset=UTF-8'}
 request = urllib2.Request(url=url, data=json.dumps(params), headers=headers)
 response = urllib2.urlopen(request)
 data = response.read()
 print data
  
def webwxgetcontact():
 global skey, pass_ticket, base_uri
   
 url = (base_uri + '/webwxgetcontact?pass_ticket=%s&skey=%s&r=%s' % (pass_ticket, skey, int(time.time())))
 headers = {'content-type': 'application/json; charset=UTF-8'}
 request = urllib2.Request(url=url, headers=headers)
 response = urllib2.urlopen(request)
 data = response.read()
 print data
  
def main():
  
  cookie = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookielib.CookieJar()))
  urllib2.install_opener(cookie)
  
  if getUUID() == False:
   print'Get uuid unsuccessfully!'
   return None
  
  show2DimensionCode()
  time.sleep(1)
  
  while isLoginSucess() != '200':
   pass
  
  webwxnewloginpage()
#   time.sleep(1)
#   webwxinit()
  time.sleep(1)
  webwxgetcontact()
   
  os.remove(imagesPath)
  print'Login successfully!'
  
if __name__ == '__main__':
  print'Welcome to use weixin personnal version'
  print'Please click Enter key to continue......'
  main()

以上这篇python 获取微信好友列表的方法(微信web)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

蓄力AI

微信公众号搜索 “ 脚本之家 ” ,选择关注

程序猿的那些事、送书等活动等着你

原文链接:https://blog.csdn.net/Dopamy_BusyMonkey/article/details/74568558

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请将相关资料发送至 reterry123@163.com 进行投诉反馈,一经查实,立即处理!

相关文章

  • pycharm利用pyspark远程连接spark集群的实现

    pycharm利用pyspark远程连接spark集群的实现

    由于工作需要,利用spark完成机器学习。因此需要对spark集群进行操作。所以利用pycharm和pyspark远程连接spark集群。感兴趣的可以了解一下
    2021-05-05
  • Python实现格式化输出的实例详解

    Python实现格式化输出的实例详解

    这篇文章主要为大家介绍了Python语法中实现格式化输出的方法,本文通过几个实例为大家进行了详细的讲解,感兴趣的小伙伴可以了解一下
    2022-08-08
  • 基于Python实现五子棋游戏

    基于Python实现五子棋游戏

    这篇文章主要为大家详细介绍了基于Python实现五子棋游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-04-04
  • 使用Python生成url短链接的方法

    使用Python生成url短链接的方法

    这篇文章主要介绍了使用Python生成url短链接的方法,短链接在如今在微博等社交网站中等是非常常见的功能,需要的朋友可以参考下
    2015-05-05
  • 利用Python分析一下最近的股票市场

    利用Python分析一下最近的股票市场

    这篇文章主要为大家介绍了利用Python分析一下最近的股票市场的实现过程,数据获取范围为2022年一月一日到2022年2月25日,感兴趣的可以了解一下
    2022-02-02
  • python3中sort和sorted使用与区别

    python3中sort和sorted使用与区别

    python3中sort()和sorted()都可以用来排序,本文主要介绍了python3中sort和sorted使用与区别,具有一定的参考价值,感兴趣的可以了解一下
    2024-02-02
  • 如何利用python将Xmind用例转为Excel用例

    如何利用python将Xmind用例转为Excel用例

    这篇文章主要介绍了如何利用python将Xmind用例转为Excel用例,文章围绕主题展开详细的内容介绍,具有一定的参考价值,需要的小伙伴可以参考一下
    2022-06-06
  • Python导入不同文件夹中文件的方法详解

    Python导入不同文件夹中文件的方法详解

    在写python程序的时候,经常会用到引入其他文件夹里的py文件,下面这篇文章主要给大家介绍了关于Python导入不同文件夹中文件的相关资料,文中通过实例代码介绍的非常详细,需要的朋友可以参考下
    2022-06-06
  • 使用python为mysql实现restful接口

    使用python为mysql实现restful接口

    这篇文章主要介绍了使用python为mysql实现restful接口的相关资料,需要的朋友可以参考下
    2018-01-01
  • python利用正则表达式排除集合中字符的功能示例

    python利用正则表达式排除集合中字符的功能示例

    在正则表达式里,想匹配一些字符中的一个,也就是说给出一个字符的集合,只要出现这个集合里任意的字符,都是成立的,下面这篇文章主要给大家介绍了关于python利用正则表达式排除集合中字符功能的相关资料,需要的朋友可以参考下。
    2017-10-10

最新评论