为了账号安全,请及时绑定邮箱和手机立即绑定

抖音 用户id转uid

标签:
Python

本文所有教程及源码、软件仅为技术研究。不涉及计算机信息系统功能的删除、修改、增加、干扰,更不会影响计算机信息系统的正常运行。不得将代码用于非法用途,如侵立删!


用户id转uid

环境

  • win10

  • Python3.9

  • PyQt5

效果

在这里插入图片描述

抖音id转sec_uid

def get_sec_uid(self, un_id):
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

sec_uid转uid

def get_uid(self, sec_uid):
headers = {
“Host”: “imdesktop.douyin.com”,
“Accept-Language”: “zh-CN”,
“Sec-Fetch-Dest”: “empty”,
“Sec-Fetch-Mode”: “cors”,
“Sec-Fetch-Site”: “cross-site”,
“User-Agent”: “Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) ???/1.0.6 Chrome/104.0.5112.102 Electron/20.1.0-tt.4.release.main.4 TTElectron/20.1.0-tt.4.release.main.4 Safari/537.36”,
“accept”: “application/json, text/plain, /”,
“bd-ticket-guard-version”: “1”,
“referer”: “https://imdesktop.douyin.com”,
“sdk-version”: “2”,
“sec-ch-ua”: “” Not A;Brand";v=“99”, “Chromium”;v=“104"”,
“sec-ch-ua-mobile”: “?0”,
“sec-ch-ua-platform”: ““Windows””,
“x-tt-disable-sessionid”: “1”,
}
response = requests.get(url, headers=headers)
print(response.text)
user_info = response.json()
if not user_info:
return None
uid= user_info.get(“uid”)
return uid

资源下载


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


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消