If you want need contact with me: [email protected]
Douyin sharp tool,floating window,copy sharp url to get raw video
In Android 10 cannot listen to the clipboard,so we need a EditText on top Windows,hook global focus.
Floating window button,click it to download raw video to self cloud.
One key operation copy other people's videos,and publish yourself at the same time.
Copy the video of the personal main account with one click, and publish it to the collection of works of his auxiliary account at the same time.
Please use correctly and pay attention to copyright. This tool is only for personal learning and communication.
import requests
import time
# 注册新设备
new_device = requests.post("http://127.0.0.1:5016/device_register/", json={}).json()
print(new_device)
#{'status': 'ok', 'data': {'device_id': '***', 'uuid': '***', 'openudid': '***', 'cdid': '***', 'mc': '***', 'sim_serial_number': '***', 'clientudid': '***', 'req_id': '***', 'build_serial': '***', 'first_reg_time': ***, 'install_id': '***', 'new_user': ***, 'channel': '***', 'os_api': '***', 'device_type': '***'}, 'agent': '***'}
device_id = new_device["data"]["device_id"]
print(device_id)
# 刷新设备注册信息
refresh_device = requests.post("http://127.0.0.1:5016/device_register/", json={"device_id": device_id}).json()
print(refresh_device)
# 获取设备注册参数
device_params = requests.get("http://127.0.0.1:5016/device_params/" + device_id).json()
print(device_params)
# 请求示例
millis = int(time.time() * 1000)
millis_short = int(millis / 1000)
sec_user_id = '***************************************'
params = dict([m.split("=") for m in device_params["data"].split("&")])
url = f"https://***.***.com/aweme/v1/**/favorite/?invalid_item_count=0&is_hiding_invalid_item=0&max_cursor=0&" \
f"sec_user_id={sec_user_id}&count=20&os_api={params['os_api']}&device_type={params['device_type']}&" \
f"ssmix=a&manifest_version_code=100601&dpi=480&uuid={params['uuid']}&app_name=***&version_name=11.1.0&" \
f"ts={str(millis_short)}&app_type=normal&ac=wifi&host_abi=armeabi-v7a&update_version_code==***&&channel=xiaomi&" \
f"_rticket={str(millis)}&device_platform=android&iid={params['iid']}&version_code=100600&" \
f"cdid={params['cdid']}&openudid={params['openudid']}&device_id={params['device_id']}&" \
f"resolution=1080*1920&os_version=6.0.1&language=zh&device_brand=Xiaomi&aid=1128"
data = {"url": url, "millis": millis_short}
gorgonInfo = requests.post("http://127.0.0.1:5016/gorgon", json=data).json()
print(url, "\n", gorgonInfo)
#{'khronos': 1590373639, 'gorgon': '040000800800ccfdf0b233263c9252381b50880d73efe2b7af06', 'status': 'ok'}
headers = {
"X-SS-REQ-TICKET": str(millis),
"sdk-version": "1",
"Host": "aweme.snssdk.com",
"Connection": "Keep-Alive",
"User-Agent": gorgonInfo["agent"],
"X-Gorgon": gorgonInfo["gorgon"],
"X-Khronos": str(gorgonInfo["khronos"])
}
response = requests.get(url, headers=headers)
print(response.text)
# xlog 加密
endata = requests.post("http://127.0.0.1:5016/xlog/en", data="加密字符串密密密密密密密密密密密密密密密密密".encode("utf-8")).json()
print(endata)
#{'message': '020ef5297ff661fc03a01acd7d0f37a7370e28599f87f81468e459c9947b0f5ffbf', 'status': 'ok'}
# xlog 解密
dedata = requests.post("http://127.0.0.1:5016/xlog/de", data=endata["message"].encode("utf-8")).json()
print(dedata)
#{'message': '加密字符串密密密密密密密密密密密密密密密密密', 'status': 'ok'}
//todo
# 发送短信验证码
sms_result = requests.get("http://127.0.0.1:5016/send_sms/180********").json()
print(sms_result)
#{'status': 'ok'}
# 登录
login_result = requests.get("http://127.0.0.1:5016/login_sms/180********/7422").json()
print(login_result)
# {'status': 'ok', 'data': { 'x_tt_token': '********', 'session_key': '********'}}
# getUserInfo token有效期很长
login_result = requests.get("http://127.0.0.1:5016/user_info/180********").json()
print(login_result)
# {'status': 'ok', 'data': { 'x_tt_token': '********', 'session_key': '********'}}
# video_raw_url 无水印视频
headers={"token": "***********************"}
json={"share_url":"https://v.douyin.com/Jdpsx7Q/"}
video_info_result = requests.post("http://**************:5008/do/video_raw_url",headers=headers,json=json).json()
print(video_info_result)
#{"data":{"author":"**********","url":"https://****************/?video_id=v0200f070000bridurlp06vruuk1hqog","desc":"*********。"},"status":"ok"}
The project is based on GNU open source agreement and cannot be used for commercial purposes
This project is for learning and exchange only, and I will not bear any legal responsibility
In case of infringement, please contact to delete.