1 Star 0 Fork 0

emoji/py

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.py 698 Bytes
一键复制 编辑 原始数据 按行查看 历史
liuqiba 提交于 2022-08-01 18:00 . 闪萌
# -*- 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())
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/emoji_1/py.git
git@gitee.com:emoji_1/py.git
emoji_1
py
py
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385