本文所有教程及源码、软件仅为技术研究。不涉及计算机信息系统功能的删除、修改、增加、干扰,更不会影响计算机信息系统的正常运行。不得将代码用于非法用途,如侵立删! |
标题
环境
- win10
- Python3.9
- PyQt5
效果
uid转sec_uid
def get_uid(self, uid):
headers = {
"Accept": "application/json, text/plain, */*",
"Referer": "https://www.douyin.com/",
"Accept-Language": "zh-CN,zh;q=0.9",
"Proxy-Tunnel": str(random.randint(1, 10000)) # 设置IP切换头
}
response = requests.get(url, headers=headers)
print(response.text)
user_info = response.json()
if not user_info:
return None
sec_uid = user_info.get("sec_uid")
nickname = user_info.get("nickname")
return sec_uid, nickname
资源下载
https://download.csdn.net/download/qq_38154948/87561029
链接:https://pan.baidu.com/s/193gj615q3FUdyVzs4-Cp2A?pwd=pw7r
提取码:pw7r
本文仅供学习交流使用,如侵立删! |
标签:info,uid,get,抖音,sec,user,https From: https://www.cnblogs.com/c1033383881/p/17207009.html