mirror of
https://github.com/imgyh/tiktok.git
synced 2025-04-05 19:50:53 +08:00
28 lines
826 B
Python
28 lines
826 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
@FileName : __init__.py.py
|
|
@Project : apiproxy
|
|
@Description:
|
|
@Author : imgyh
|
|
@Mail : admin@imgyh.com
|
|
@Github : https://github.com/imgyh
|
|
@Site : https://www.imgyh.com
|
|
@Date : 2023/5/12 14:44
|
|
@Version : v1.0
|
|
@ChangeLog
|
|
------------------------------------------------
|
|
|
|
------------------------------------------------
|
|
'''
|
|
import apiproxy
|
|
from apiproxy.common import utils
|
|
|
|
douyin_headers = {
|
|
'User-Agent': apiproxy.ua,
|
|
'referer': 'https://www.douyin.com/',
|
|
'accept-encoding': None,
|
|
'Cookie': f"msToken={utils.generate_random_str(107)}; ttwid={utils.getttwid()}; odin_tt=324fb4ea4a89c0c05827e18a1ed9cf9bf8a17f7705fcc793fec935b637867e2a5a9b8168c885554d029919117a18ba69; passport_csrf_token=f61602fc63757ae0e4fd9d6bdcee4810;"
|
|
}
|