mirror of
https://github.com/imgyh/tiktok.git
synced 2025-04-05 23:25:45 +08:00
feat(tiktok): 支持本地生成X-Bogus (#3)
* 支持本地生成X-Bogus 由于使用第三方接口必然会产生网络延迟等问题,故支持本地生成X-Bogus 参考项目https://github.com/B1gM8c/tiktok
This commit is contained in:
parent
8f9fe9f1e7
commit
a4328cd53b
@ -18,7 +18,10 @@ import re
|
||||
import json
|
||||
import requests
|
||||
from TikTokUrls import Urls
|
||||
|
||||
import urllib.parse
|
||||
import execjs
|
||||
import os
|
||||
import sys
|
||||
|
||||
class Utils(object):
|
||||
def __init__(self):
|
||||
@ -50,18 +53,26 @@ class Utils(object):
|
||||
# 去除前后空格
|
||||
return result
|
||||
|
||||
def getXbogus(self, url, headers=None):
|
||||
urls = Urls()
|
||||
try:
|
||||
response = json.loads(requests.post(
|
||||
url=urls.GET_XB_PATH, data={"param": url}, headers=headers).text)
|
||||
params = response["param"]
|
||||
xb = response["X-Bogus"]
|
||||
except Exception as e:
|
||||
print('[ 错误 ]:X-Bogus接口异常, 可能是访问流量高, 接口限流请稍等几分钟再次尝试')
|
||||
return
|
||||
def resource_path(self,relative_path):
|
||||
if getattr(sys, 'frozen', False): # 是否Bundle Resource
|
||||
base_path = sys._MEIPASS
|
||||
else:
|
||||
base_path = os.path.dirname(os.path.abspath(__file__))
|
||||
return os.path.join(base_path, relative_path)
|
||||
|
||||
return params # , xb
|
||||
def getXbogus(self, url, headers=None):
|
||||
# getXbogus算法开源地址https://github.com/B1gM8c/tiktok
|
||||
urls = Urls()
|
||||
query = urllib.parse.urlparse(urls.POST_DETAIL + url).query
|
||||
user_agent = headers.get(
|
||||
'User-Agent') if headers else "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36"
|
||||
try:
|
||||
xbogus = execjs.compile(open(self.resource_path(os.path.join("X-Bogus.js"))).read()).call('sign', query, user_agent)
|
||||
params = url + "&X-Bogus=" + xbogus
|
||||
except Exception as e:
|
||||
print('[ 错误 ]:X-Bogus算法异常')
|
||||
return
|
||||
return params
|
||||
|
||||
def str2bool(self, v):
|
||||
if isinstance(v, bool):
|
||||
|
564
X-Bogus.js
Normal file
564
X-Bogus.js
Normal file
File diff suppressed because one or more lines are too long
@ -1,3 +1,4 @@
|
||||
requests==2.28.2
|
||||
flask==2.2.2
|
||||
pyinstaller==5.7.0
|
||||
pyinstaller==5.7.0
|
||||
PyExecJS==1.5.1
|
Loading…
x
Reference in New Issue
Block a user