当前位置:   article > 正文

关于微信小程序爬虫关于token自动更新问题_微信公众号 爬虫的token

微信公众号 爬虫的token

  现在很多的app都很喜欢在微信或者支付宝的小程序内做开发,毕竟比较方便、安全、有流量、不需要再次下载app,好多人会因为加入你让他下载app他会扭头就走不用你的app,毕竟做类似产品的不是你一家。

  之前做过很多微信小程序的爬虫任务,今天做下记录,防止很久不用后就会忘记,微信小程序分为两大类:

  1、是不需要登录的(这种的话不做分析,毕竟没什么反爬)

  2、需要登录的

    2.1 登录一次之后token永久有效

    2.2 登录一次token几分钟内到几小时内失效

      2.2.1 登录后一段时间后token时候需要再次调用微信内部方法生成code去换取token(本次主要做的)

      2.2.2 跟2.2.1类似,然后又加了一道校验,比如图片验证码,这个类似于微信公众号的茅台预约那种(本次不做分析)

  微信小程序的登录其实跟其他的web登录不太一样,一般的web登录或者是app登录基本上就是用户名+密码+验证码(图片或者短信)就可以,微信的逻辑是假如你需要登录的话需要获得用户的授权,之后调用微信的内部方法生成一个code,code只能用一次之后就实效,微信解释这个code有效期是5分钟左右。

  这里是具体流程:https://developers.weixin.qq.com/community/develop/doc/000c2424654c40bd9c960e71e5b009?highLine=code

  之前爬取过的一个小程序他的反爬是token有效期一个小时,然后单次token可用大概100次左右,当单个token使用次数或者单小时内使用次数超过100次就直接封号处理,24小时内也有频率控制,所以就需要我每小时一次每小时一次的去获取token,当然,因为我是个程序猿,所以我不能每小时手动的去获取这个token,比较这不是我们的风格。

  这里需要的是python+fiddler+appium+模拟器,大致的思路是通过appium去操控模拟器模拟点击微信的小程序,定期的去做点击,然后fiddler去从请求的头部信息中获取到token,之后写到本地文件中,然后python程序定时的去判断这个本地文件是否进行了更新,更新了的话通过正则来获取到token_list之后去最后一个,因为有可能是当前保存的token已经失效了,小程序还会再次去拿这个token尝试请求一下,假如失效了会调用微信的内部方法生成code来换取token,我这里的爬虫主代码是运行在服务器的,所有又增加了Redis来存储token。

  一、微信模拟点击

  微信按照需求条件时间频率模拟点击、滑动、退出等操作,以下的ding_talk的send_msg是增加的钉钉发送消息,此处不再添加,有需求的可以自己查看钉钉机器人文档或者依据自己的需求调整自己的消息提醒。

  1. import time
  2. import logging
  3. from appium import webdriver
  4. from ding_talk import send_msg
  5. from handle_file import EnToken
  6. from conf.dbr import RedisClient
  7. from selenium.webdriver.common.by import By
  8. from selenium.webdriver.support.ui import WebDriverWait
  9. from selenium.webdriver.support import expected_conditions as EC
  10. from config import *
  11. LOG_FORMAT = "%(asctime)s - %(levelname)s - line:%(lineno)s - msg:%(message)s"
  12. logging.basicConfig(level=logging.INFO, format=LOG_FORMAT)
  13. # logging.FileHandler(filename='app.log', encoding='utf-8')
  14. # 微信获取en token
  15. class WeChat(object):
  16. def __init__(self):
  17. """
  18. 初始化
  19. """
  20. # 驱动配置
  21. self.desired_caps = {
  22. 'platformName': PLATFORM,
  23. 'deviceName': DEVICE_NAME,
  24. 'appPackage': APP_PACKAGE,
  25. 'appActivity': APP_ACTIVITY,
  26. 'noReset': True
  27. }
  28. self.driver = webdriver.Remote(DRIVER_SERVER, self.desired_caps)
  29. self.wait = WebDriverWait(self.driver, TIMEOUT)
  30. self.hours_en = 60 * 60 * 1.1 # en控制1.1小时模拟点击一次
  31. self.date_start_en = time.time() # en开始时间
  32. self.date_end_en = 0 # en超过此时间后再次运行
  33. # self.date_end_en = self.date_start_en + self.hours_en # en超过此时间后再次运行
  34. self.week = 60 * 60 * 24 * 7 # 按照周的频率对xd进行token更新
  35. self.week_start_xd = time.time() # xd的开始时间
  36. self.week_end_xd = 0 # 根据周控制频率控制再次开启时间
  37. self.week_start_xiu = time.time() # xd的开始时间
  38. self.week_end_xiu = 0 # 根据周控制频率控制再次开启时间
  39. def login(self):
  40. """
  41. 登录微信
  42. :return:
  43. """
  44. # 登录按钮
  45. a = time.time()
  46. try:
  47. login = self.wait.until(EC.presence_of_element_located((By.ID, 'com.tencent.mm:id/f34')))
  48. login.click()
  49. except Exception as e:
  50. # print(e)
  51. logging.info(f'failed login {e}')
  52. b = time.time() - a
  53. # print('点击登录', b)
  54. logging.info(f'click login,use time {b}')
  55. # 手机输入
  56. try:
  57. phone = self.wait.until(EC.presence_of_element_located((By.ID, 'com.tencent.mm:id/bem')))
  58. phone.set_text(USERNAME)
  59. except Exception as e:
  60. # print(e)
  61. logging.info(f'something wrong{e}')
  62. c = time.time() - a - b
  63. # print('手机号输入', c)
  64. logging.info(f'send keys phone nums use time {c}')
  65. # 下一步
  66. try:
  67. next = self.wait.until(EC.element_to_be_clickable((By.ID, 'com.tencent.mm:id/dw1')))
  68. next.click()
  69. except Exception as e:
  70. logging.info(f'something wrong{e}')
  71. d = time.time() - a - b - c
  72. logging.info(f'click next bottom use time {c}')
  73. # 密码
  74. password = self.wait.until(EC.presence_of_element_located((By.XPATH, '//*[@text="请填写微信密码"]')))
  75. password.set_text(PASSWORD)
  76. e = time.time() - a - b - c - d
  77. logging.info(f'send keys password use time {e}')
  78. # 提交
  79. # submit = self.wait.until(EC.element_to_be_clickable((By.ID, 'com.tencent.mm:id/dw1')))
  80. submit = self.wait.until(EC.element_to_be_clickable((By.XPATH, '//*[@text="登录"]')))
  81. submit.click()
  82. f = time.time() - a - b - c - d - e
  83. logging.info(f'commit password use time {f}')
  84. def run(self):
  85. """
  86. 入口
  87. :return:
  88. """
  89. # 滑动之后等待出现en小程序
  90. self.slide_down()
  91. time.sleep(10)
  92. # 点击进入en小程序
  93. self.touch_en()
  94. if self.week_end_xd < self.week_start_xd:
  95. self.week_start_xd = time.time()
  96. self.week_end_xd = self.week_start_xd + self.week
  97. print('xd点击')
  98. self.touch_xd()
  99. elif self.week_end_xiu < self.week_start_xiu:
  100. self.week_end_xiu = time.time() + self.week
  101. print('xiu')
  102. self.touch_xiu()
  103. time.sleep(10)
  104. # 退出小程序
  105. self.driver_closed()
  106. print('driver closed')
  107. emt = EnToken()
  108. token_res = emt.token_2_redis()
  109. if not token_res:
  110. print('需要发送失败消息')
  111. return False
  112. return True
  113. def slide_down(self):
  114. """
  115. 滑动微信屏幕之后点击小程序
  116. :return:
  117. """
  118. window_size_phone = self.driver.get_window_size()
  119. # print(window_size_phone)
  120. phone_width = window_size_phone.get('width')
  121. phone_height = window_size_phone.get('height')
  122. # print(phone_width, phone_height)
  123. time.sleep(15)
  124. x1 = phone_width * 0.5
  125. y1 = phone_height * 0.7
  126. y2 = phone_height * 0.26
  127. # print('准备向下滑动')
  128. logging.info(f'prepare slide down')
  129. a = time.time()
  130. self.driver.swipe(x1, y2, x1, y1, 2050)
  131. # print('向下滑动完成', time.time() - a)
  132. logging.info(f'slide down success use time {time.time() - a}')
  133. def touch_en(self):
  134. """
  135. 每次进来之后都需要判断是否到了时间,若时间到了之后才可执行点击操作
  136. :param : en 代表en; xd 代表xd; xiu 代表xiu.
  137. :return: None 无返回值
  138. """
  139. print(self.date_end_en, time.time())
  140. if self.date_end_en < time.time(): # 此时的时候已经超时,需要再次从新进行点击
  141. print('en模拟点击')
  142. # 从新定义开始结束时间
  143. print(self.date_end_en, time.time())
  144. self.date_end_en = time.time() + self.hours_en # 再次更改end time为n小时后
  145. print(self.date_end_en, time.time())
  146. try:
  147. # print('id定位en')
  148. en_app = self.wait.until(
  149. EC.presence_of_element_located((By.XPATH, f"//android.widget.TextView[@text='textname…']")))
  150. # en_master = self.wait.until(EC.presence_of_element_located((By.ID, 'com.tencent.mm:id/hu')))
  151. # en_master = self.wait.until(
  152. # EC.presence_of_element_located((By.XPATH, "//android.widget.TextView[@text='textname']")))
  153. en_app.click()
  154. logging.info(f'located by app_name en')
  155. except Exception as error:
  156. # print(e, 'id定位失败')
  157. logging.info(f'failed located by id:{error}')
  158. time.sleep(20)
  159. # 关闭小程序按钮点击
  160. print('close the en app')
  161. close_button = self.wait.until(EC.presence_of_element_located((By.XPATH, f"//android.widget.FrameLayout[2]/android.widget.ImageButton")))
  162. close_button.click()
  163. print('点击了关闭小程序')
  164. def touch_xd(self):
  165. """
  166. 需要考虑是否已经登录状态还是需要再次登录
  167. :return:
  168. """
  169. # 点击后进入到小程序
  170. logging.info('click app xd')
  171. xd_app = self.wait.until(EC.presence_of_element_located((By.XPATH, "//android.widget.TextView[@text='textname']")))
  172. xd_app.click()
  173. time.sleep(20)
  174. # 页面出现需要获取到你的定位的时候需要点击允许
  175. print('点击确认获取当前位置')
  176. self.driver.tap([(510, 679)], 500)
  177. # 点击进入到个人中心
  178. time.sleep(10)
  179. logging.info('click personal xd')
  180. self.driver.tap([(540, 1154)], 500)
  181. # 点击快速登录进行登录
  182. time.sleep(10)
  183. logging.info('click login xd')
  184. self.driver.tap([(270, 1030)], 500)
  185. # 点击同意获取头像信息
  186. time.sleep(10)
  187. logging.info('同意获取头像等相关信息')
  188. self.driver.tap([(510, 775)], 500)
  189. time.sleep(20)
  190. # 关闭小程序按钮点击
  191. print('close the guaishou app')
  192. close_button = self.wait.until(
  193. EC.presence_of_element_located((By.XPATH, f"//android.widget.FrameLayout[2]/android.widget.ImageButton")))
  194. close_button.click()
  195. print('结束')
  196. time.sleep(30)
  197. def touch_xiu(self):
  198. """
  199. xiu模拟点击,需要考虑是否需要登录状态下
  200. :return:
  201. """
  202. # 点击后进入到小程序
  203. logging.info('click app xiu')
  204. xiu_app = self.wait.until(EC.presence_of_element_located((By.XPATH, "//android.widget.TextView[@text='xiu']")))
  205. xiu_app.click()
  206. # 若页面显示需要确认获取当前位置的话需要点击确认
  207. logging.info('click confirm xiu')
  208. time.sleep(15)
  209. confirm_loc = self.wait.until(
  210. EC.presence_of_element_located((By.XPATH, "//android.widget.Button[@text='确定']")))
  211. confirm_loc.click()
  212. # 点击个人中心
  213. logging.info('click personal xiu')
  214. time.sleep(5)
  215. try:
  216. personal = self.wait.until(
  217. EC.presence_of_element_located((By.XPATH, "//android.view.View[@content-desc='个人中心']")))
  218. personal.click()
  219. except Exception as e:
  220. print(e)
  221. # 点击快速登录进行登录
  222. logging.info('click login xiu')
  223. time.sleep(5)
  224. try:
  225. login = self.wait.until(EC.presence_of_element_located((By.XPATH, "//android.view.View[@content-desc='立即登录']")))
  226. login.click()
  227. except Exception as e:
  228. print('xiu已经登录,不需要再次点击确认登录')
  229. time.sleep(30)
  230. def driver_closed(self):
  231. self.driver.quit()
  232. if __name__ == '__main__':
  233. conn_r = RedisClient(db=10)
  234. count_1 = 0
  235. # start_time = time.time()
  236. # end_time = time.time() + 60 * 60 * 1
  237. we_chat = WeChat()
  238. try:
  239. while 1:
  240. if conn_r.r_size() < 3: # 监控Redis情况,当Redis中无数据后开始运行一次
  241. res = we_chat.run() # 操作微信做操作点击en小程序生成token
  242. if not res:
  243. count_1 += 1
  244. if count_1 > 10:
  245. break # 当失败十次之后跳出循环
  246. # 此处增加限制,每次生成token之后一个小时后才会产生新的token,防止一个token多次使用导致被封号
  247. time.sleep(60*60)
  248. else:
  249. time.sleep(60*60) # 当有数据的时候等待五分钟
  250. we_chat.driver = webdriver.Remote(DRIVER_SERVER, we_chat.desired_caps)
  251. we_chat.wait = WebDriverWait(we_chat.driver, TIMEOUT)
  252. except Exception as e:
  253. msg = f'业务报警:' \
  254. f'\n en获取token出现问题' \
  255. f'\n{e}'
  256. send_msg(msg)
  257. # print(e, type(e))
  258. logging.info(msg)
  259. weixin.py
  1. import os
  2. # 平台
  3. PLATFORM = 'Android'
  4. # 设备名称 通过 adb devices -l 获取
  5. DEVICE_NAME = 'MI_9'
  6. # APP路径
  7. APP = os.path.abspath('.') + '/weixin.apk'
  8. # APP包名
  9. APP_PACKAGE = 'com.tencent.mm'
  10. # 入口类名
  11. APP_ACTIVITY = '.ui.LauncherUI'
  12. # Appium地址
  13. DRIVER_SERVER = 'http://localhost:4723/wd/hub'
  14. # 等待元素加载时间
  15. TIMEOUT = 10
  16. # 微信手机号密码
  17. USERNAME = 'wechatname'
  18. PASSWORD = 'wechatpwd'
  19. # 滑动点
  20. FLICK_START_X = 300
  21. FLICK_START_Y = 300
  22. FLICK_DISTANCE = 700
  23. config.py

以下是处理文件,将token获取到后放到Redis中,或者你可以依照你的想法调整

  1. import re
  2. import os
  3. import logging
  4. from conf.dbr import RedisClient
  5. LOG_FORMAT = "%(asctime)s - %(levelname)s - line:%(lineno)s - msg:%(message)s"
  6. logging.basicConfig(level=logging.DEBUG, format=LOG_FORMAT)
  7. # 处理en token到Redis
  8. class EnToken(object):
  9. def __init__(self):
  10. # self.token_path = 'F:\\en.txt'
  11. # self.token_path = 'F:\\xiu.txt'
  12. # self.token_path = 'F:\\xd.txt'
  13. self.conn = RedisClient(db=10) # 解析日维度价格
  14. self.conn_en = RedisClient(db=9) # 解析当前经纬度范围内店铺点位
  15. # 处理en token文件,从文件中读取到token之后只取最后一个,取到之后删除本地文件
  16. @staticmethod
  17. def handle_en_txt():
  18. token_dict = {}
  19. path_token_list = [
  20. ('en', '>(e.*?)-->'),
  21. ('xd', 'headers-->(.*?)-->'),
  22. ('xiu', r'>(\d+)-->'),
  23. ]
  24. for i in path_token_list:
  25. token_path = f'F:\\{i[0]}.txt'
  26. token_re = i[-1]
  27. if os.path.exists(token_path):
  28. with open(token_path, mode='r', encoding='utf-8') as f:
  29. token_str = f.read()
  30. # print(token_str)
  31. # token_list = re.findall('>(e.*?)-->', token_str)
  32. # token_list = re.findall('>(Q.*?)-->', token_str)
  33. # token_list = re.findall('>(\d+)-->', token_str)
  34. token_list = re.findall(token_re, token_str)
  35. print(token_list)
  36. if token_list:
  37. token = token_list[-1]
  38. print(token)
  39. token_dict[i[0]] = token
  40. os.remove(token_path) # 删除掉
  41. # return token
  42. else:
  43. # print('file_en_dont_exit')
  44. logging.info('file_en_dont_exit')
  45. return token_dict
  46. # 将token放到Redis中
  47. def token_2_redis(self):
  48. """
  49. 假如token存在的话 则根据token的最后几位做key放入到Redis中
  50. :return:
  51. """
  52. token_dict = self.handle_en_txt()
  53. print(token_dict)
  54. if token_dict:
  55. for token_items in token_dict.items():
  56. token_key = token_items[0]
  57. token_val = token_items[-1]
  58. self.conn.set(token_key, token_val, over_time=None)
  59. # self.conn.set(token_key, token, over_time=60*65) # 设置有效时长65分钟之后失效
  60. # self.conn_en.set(token_key, token, over_time=60*65) # 设置有效时长65分钟之后失效
  61. logging.info(f'token success {token_key,token_val}')
  62. return True
  63. else:
  64. logging.info('token dons"t exist')
  65. self.conn.close()
  66. self.conn_en.close()
  67. if __name__ == '__main__':
  68. en = EnToken()
  69. en.token_2_redis()
  70. handle_file.py

  二、配置fiddler获取请求头的信息写到本地文件

修改fiddlerscript添加以下内容,在做数据请求的以下增加下面内容

  1. if (oSession.oRequest["Host"]=="这里是请求的host") {
  2. var filename = "F:\en.txt";
  3. var curDate = new Date();
  4. var logContent = 'en' + "[" + curDate.toLocaleString() + "]";
  5. var sw : System.IO.StreamWriter;
  6. if (System.IO.File.Exists(filename)){
  7. sw = System.IO.File.AppendText(filename);
  8. sw.Write(logContent + 'oSession.oRequest.headers-->' + oSession.oRequest.headers['x-wx-token'] + '-->' + oSession.oRequest.headers +'\n');
  9. // sw.Write("Request header:" + "\n" + oSession.oRequest.headers);
  10. // sw.Write(wap_s + '\n\n')
  11. }
  12. else{
  13. sw = System.IO.File.CreateText(filename);
  14. sw.Write(logContent + 'oSession.oRequest.headers-->' + oSession.oRequest.headers['x-wx-token'] + '-->' + '\n');
  15. // sw.Write("Request header:" + "\n" + oSession.oRequest.headers);
  16. // sw.Write(wap_s + '\n\n')
  17. }
  18. sw.Close();
  19. sw.Dispose();
  20. }
  21. fiddler

  三、主爬虫业务代码

  此处按照自己的需求逻辑调整自己的业务代码。

 本文章同步发表于博客园

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/423970
推荐阅读
相关标签
  

闽ICP备14008679号