python实现base64

请求头mcode参数可能为base64

一.判断方法:

由‘a-zA-Z0-9/;=‘组成

二.可直接用python实现

import time
import base64
import time
now_time = math.floor(time.time())
print(now_time)  # 与浏览器自动生成的时间戳进行对比,位数是否一致
mcode = base64.b64encode(str(now_time).encode()).decode()
print(mcode)
注意:

时间戳需要与浏览器页面自动生成的时间戳进行对比,位数是否一致

你可能感兴趣的:(python,爬虫)