这一题非常简单,只需要找到数据接口,请求参数 m生成的逻辑即可
查看数据接口 https://match.yuanrenxue.cn/api/match/12
查看请求对应的堆栈中的 requests 栈
list 为对应的请求参数
list 是由 btoa 函数传入 ‘yuanrenxue’ + 对应的页码生成的
btoa 在浏览器中的作用是: 将传入的字符串进行 base64 编码
对应的 python 代码
from base64 import b64encode
encrypt = b64encode(('yuanrenxue' + '2').encode()).decode()
print(encrypt)
结果与浏览器一致
python 代码
from base64 import b64encode
import requests
headers = {
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36",
}
cookies = {
"sessionid": "你的sessionId",
}
def send_match12(page):
url = "https://match.yuanrenxue.cn/api/match/12"
params = {
"page": f"{page}",
}
encrypt = b64encode(('yuanrenxue' + params["page"]).encode()).decode()
params['m'] = encrypt
response = requests.get(url, headers=headers, cookies=cookies, params=params)
return response.json()['data']
if __name__ == '__main__':
nums = 0
for page in range(1, 6):
num_list = send_match12(page)
for num in num_list:
nums += num['value']
print('page: ', page, 'nums: ', nums)