抖音 uid转sec_uid

2023-03-11 21:32:15 浏览数 (1)


标题

环境

win10 Python3.9 PyQt5

效果

uid转sec_uid

代码语言:python代码运行次数:10复制
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](链接:https://pan.baidu.com/s/193gj615q3FUdyVzs4-Cp2A?pwd=pw7r)


本文仅供学习交流使用,如侵立删!


0 人点赞