代码拉取完成,页面将自动刷新
# -*- coding: utf-8 -*-
# @Author : Lny
# @Email : 2635214715@qq.com
# @Site : http://www.qqlove.pro
# @Time : 2022-07-07 09:14:55
# @Desc :
import requests, uuid, time
import hashlib
# 创建md5对象
hl = hashlib.md5()
now_time = int(time.time())
str = 'weshine@2016#Y2MyZTlmYmUxMWY5MjJkODE1ODE4NzgzNDNmZWI3NDM=#' + str(now_time)
hl.update(str.encode(encoding='utf-8'))
url = "https://mp.weshineapp.com/2.0/album/lists"
params = {
'timestamp': now_time,
'sign': hl.hexdigest(),
'h': uuid.uuid4(),
'platform': 'wechat',
'app_v': '3.11.12',
'offset': 0,
'limit': 20,
'cate_id': 4560,
}
print(params)
print(requests.get(url=url, params=params).json())
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。