mirror of
https://github.com/imgyh/tiktok.git
synced 2025-04-06 08:15:46 +08:00
parent
372450b4d7
commit
d3d091d9dd
152
TikTok.py
152
TikTok.py
@ -144,6 +144,36 @@ class TikTok(object):
|
|||||||
|
|
||||||
return key_type, key
|
return key_type, key
|
||||||
|
|
||||||
|
|
||||||
|
def getAwemeInfoApi(self, aweme_id):
|
||||||
|
if aweme_id is None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
try:
|
||||||
|
jx_url = self.urls.POST_DETAIL + self.utils.getXbogus(
|
||||||
|
url=f'aweme_id={aweme_id}&aid=1128&version_name=23.5.0&device_platform=android&os_version=2333')
|
||||||
|
|
||||||
|
raw = requests.get(url=jx_url, headers=self.headers).text
|
||||||
|
datadict = json.loads(raw)
|
||||||
|
except Exception as e:
|
||||||
|
return None
|
||||||
|
|
||||||
|
# 清空self.awemeDict
|
||||||
|
self.result.clearDict(self.result.awemeDict)
|
||||||
|
|
||||||
|
# 默认为视频
|
||||||
|
awemeType = 0
|
||||||
|
try:
|
||||||
|
if datadict['aweme_detail']["images"] is not None:
|
||||||
|
awemeType = 1
|
||||||
|
except Exception as e:
|
||||||
|
pass
|
||||||
|
|
||||||
|
# 转换成我们自己的格式
|
||||||
|
self.result.dataConvert(awemeType, self.result.awemeDict, datadict['aweme_detail'])
|
||||||
|
|
||||||
|
return self.result.awemeDict, datadict
|
||||||
|
|
||||||
# 传入 aweme_id
|
# 传入 aweme_id
|
||||||
# 返回 数据 字典
|
# 返回 数据 字典
|
||||||
def getAwemeInfo(self, aweme_id):
|
def getAwemeInfo(self, aweme_id):
|
||||||
@ -210,7 +240,7 @@ class TikTok(object):
|
|||||||
datadict = json.loads(res.text)
|
datadict = json.loads(res.text)
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return awemeList
|
return None
|
||||||
|
|
||||||
for aweme in datadict["aweme_list"]:
|
for aweme in datadict["aweme_list"]:
|
||||||
# 清空self.awemeDict
|
# 清空self.awemeDict
|
||||||
@ -222,7 +252,6 @@ class TikTok(object):
|
|||||||
if aweme["images"] is not None:
|
if aweme["images"] is not None:
|
||||||
awemeType = 1
|
awemeType = 1
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
# print("[ 警告 ]:接口中未找到 images\r")
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# 转换成我们自己的格式
|
# 转换成我们自己的格式
|
||||||
@ -231,7 +260,7 @@ class TikTok(object):
|
|||||||
if self.result.awemeDict is not None and self.result.awemeDict != {}:
|
if self.result.awemeDict is not None and self.result.awemeDict != {}:
|
||||||
awemeList.append(copy.deepcopy(self.result.awemeDict))
|
awemeList.append(copy.deepcopy(self.result.awemeDict))
|
||||||
|
|
||||||
return awemeList, datadict["max_cursor"], datadict["has_more"]
|
return awemeList, datadict, datadict["max_cursor"], datadict["has_more"]
|
||||||
|
|
||||||
# 传入 url 支持 https://www.iesdouyin.com 与 https://v.douyin.com
|
# 传入 url 支持 https://www.iesdouyin.com 与 https://v.douyin.com
|
||||||
# mode : post | like 模式选择 like为用户点赞 post为用户发布
|
# mode : post | like 模式选择 like为用户点赞 post为用户发布
|
||||||
@ -325,9 +354,73 @@ class TikTok(object):
|
|||||||
|
|
||||||
return awemeList
|
return awemeList
|
||||||
|
|
||||||
def getLiveInfo(self, web_rid: str, option=True):
|
def getLiveInfoApi(self, web_rid: str):
|
||||||
if option:
|
try:
|
||||||
print('[ 提示 ]:正在请求的直播间 id = %s\r\n' % web_rid)
|
live_api = self.urls.LIVE + self.utils.getXbogus(
|
||||||
|
url=f'aid=6383&device_platform=web&web_rid={web_rid}')
|
||||||
|
|
||||||
|
response = requests.get(live_api, headers=self.headers)
|
||||||
|
live_json = json.loads(response.text)
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
return None
|
||||||
|
|
||||||
|
# 清空字典
|
||||||
|
self.result.clearDict(self.result.liveDict)
|
||||||
|
|
||||||
|
# 类型
|
||||||
|
self.result.liveDict["awemeType"] = 2
|
||||||
|
# 是否在播
|
||||||
|
self.result.liveDict["status"] = live_json['data']['data'][0]['status']
|
||||||
|
|
||||||
|
if self.result.liveDict["status"] == 4:
|
||||||
|
return self.result.liveDict, live_json
|
||||||
|
|
||||||
|
# 直播标题
|
||||||
|
self.result.liveDict["title"] = live_json['data']['data'][0]['title']
|
||||||
|
|
||||||
|
# 直播cover
|
||||||
|
self.result.liveDict["cover"] = live_json['data']['data'][0]['cover']['url_list'][0]
|
||||||
|
|
||||||
|
# 头像
|
||||||
|
self.result.liveDict["avatar"] = live_json['data']['data'][0]['owner']['avatar_thumb']['url_list'][0].replace("100x100", "1080x1080")
|
||||||
|
|
||||||
|
# 观看人数
|
||||||
|
self.result.liveDict["user_count"] = live_json['data']['data'][0]['user_count_str']
|
||||||
|
|
||||||
|
# 昵称
|
||||||
|
self.result.liveDict["nickname"] = live_json['data']['data'][0]['owner']['nickname']
|
||||||
|
|
||||||
|
# sec_uid
|
||||||
|
self.result.liveDict["sec_uid"] = live_json['data']['data'][0]['owner']['sec_uid']
|
||||||
|
|
||||||
|
# 直播间观看状态
|
||||||
|
self.result.liveDict["display_long"] = live_json['data']['data'][0]['room_view_stats']['display_long']
|
||||||
|
|
||||||
|
# 推流
|
||||||
|
self.result.liveDict["flv_pull_url"] = live_json['data']['data'][0]['stream_url']['flv_pull_url']
|
||||||
|
|
||||||
|
try:
|
||||||
|
# 分区
|
||||||
|
self.result.liveDict["partition"] = live_json['data']['partition_road_map']['partition']['title']
|
||||||
|
self.result.liveDict["sub_partition"] = live_json['data']['partition_road_map']['sub_partition']['partition'][
|
||||||
|
'title']
|
||||||
|
except Exception as e:
|
||||||
|
self.result.liveDict["partition"] = '无'
|
||||||
|
self.result.liveDict["sub_partition"] = '无'
|
||||||
|
|
||||||
|
|
||||||
|
flv = []
|
||||||
|
|
||||||
|
for i, f in enumerate(self.result.liveDict["flv_pull_url"].keys()):
|
||||||
|
flv.append(f)
|
||||||
|
|
||||||
|
self.result.liveDict["flv_pull_url0"] = self.result.liveDict["flv_pull_url"][flv[0]].replace("http://", "https://")
|
||||||
|
|
||||||
|
return self.result.liveDict, live_json
|
||||||
|
|
||||||
|
def getLiveInfo(self, web_rid: str):
|
||||||
|
print('[ 提示 ]:正在请求的直播间 id = %s\r\n' % web_rid)
|
||||||
|
|
||||||
# web_rid = live_url.replace('https://live.douyin.com/', '')
|
# web_rid = live_url.replace('https://live.douyin.com/', '')
|
||||||
|
|
||||||
@ -348,8 +441,6 @@ class TikTok(object):
|
|||||||
# raise RuntimeError("重复请求该接口" + str(self.timeout) + "s, 仍然未获取到数据")
|
# raise RuntimeError("重复请求该接口" + str(self.timeout) + "s, 仍然未获取到数据")
|
||||||
print("[ 提示 ]:重复请求该接口" + str(self.timeout) + "s, 仍然未获取到数据")
|
print("[ 提示 ]:重复请求该接口" + str(self.timeout) + "s, 仍然未获取到数据")
|
||||||
return {}
|
return {}
|
||||||
# if option:
|
|
||||||
# print("[ 错误 ]:接口未返回数据, 正在重新请求!\r")
|
|
||||||
|
|
||||||
# 清空字典
|
# 清空字典
|
||||||
self.result.clearDict(self.result.liveDict)
|
self.result.clearDict(self.result.liveDict)
|
||||||
@ -360,8 +451,7 @@ class TikTok(object):
|
|||||||
self.result.liveDict["status"] = live_json['data']['data'][0]['status']
|
self.result.liveDict["status"] = live_json['data']['data'][0]['status']
|
||||||
|
|
||||||
if self.result.liveDict["status"] == 4:
|
if self.result.liveDict["status"] == 4:
|
||||||
if option:
|
print('[ 📺 ]:当前直播已结束,正在退出')
|
||||||
print('[ 📺 ]:当前直播已结束,正在退出')
|
|
||||||
return self.result.liveDict
|
return self.result.liveDict
|
||||||
|
|
||||||
# 直播标题
|
# 直播标题
|
||||||
@ -397,30 +487,24 @@ class TikTok(object):
|
|||||||
self.result.liveDict["partition"] = '无'
|
self.result.liveDict["partition"] = '无'
|
||||||
self.result.liveDict["sub_partition"] = '无'
|
self.result.liveDict["sub_partition"] = '无'
|
||||||
|
|
||||||
if option:
|
info = '[ 💻 ]:直播间:%s 当前%s 主播:%s 分区:%s-%s\r' % (
|
||||||
info = '[ 💻 ]:直播间:%s 当前%s 主播:%s 分区:%s-%s\r' % (
|
self.result.liveDict["title"], self.result.liveDict["display_long"], self.result.liveDict["nickname"],
|
||||||
self.result.liveDict["title"], self.result.liveDict["display_long"], self.result.liveDict["nickname"],
|
self.result.liveDict["partition"], self.result.liveDict["sub_partition"])
|
||||||
self.result.liveDict["partition"], self.result.liveDict["sub_partition"])
|
print(info)
|
||||||
print(info)
|
|
||||||
|
|
||||||
flv = []
|
flv = []
|
||||||
if option:
|
print('[ 🎦 ]:直播间清晰度')
|
||||||
print('[ 🎦 ]:直播间清晰度')
|
|
||||||
for i, f in enumerate(self.result.liveDict["flv_pull_url"].keys()):
|
for i, f in enumerate(self.result.liveDict["flv_pull_url"].keys()):
|
||||||
if option:
|
print('[ %s ]: %s' % (i, f))
|
||||||
print('[ %s ]: %s' % (i, f))
|
|
||||||
flv.append(f)
|
flv.append(f)
|
||||||
if option:
|
|
||||||
rate = int(input('[ 🎬 ]输入数字选择推流清晰度:'))
|
rate = int(input('[ 🎬 ]输入数字选择推流清晰度:'))
|
||||||
else:
|
|
||||||
rate = 0
|
|
||||||
|
|
||||||
self.result.liveDict["flv_pull_url0"] = self.result.liveDict["flv_pull_url"][flv[rate]].replace("http://", "https://")
|
self.result.liveDict["flv_pull_url0"] = self.result.liveDict["flv_pull_url"][flv[rate]].replace("http://", "https://")
|
||||||
|
|
||||||
# 显示清晰度列表
|
# 显示清晰度列表
|
||||||
if option:
|
print('[ %s ]:%s' % (flv[rate], self.result.liveDict["flv_pull_url"][flv[rate]]))
|
||||||
print('[ %s ]:%s' % (flv[rate], self.result.liveDict["flv_pull_url"][flv[rate]]))
|
print('[ 📺 ]:复制链接使用下载工具下载')
|
||||||
print('[ 📺 ]:复制链接使用下载工具下载')
|
|
||||||
return self.result.liveDict
|
return self.result.liveDict
|
||||||
|
|
||||||
def getMixInfoApi(self, mix_id: str, count=35, cursor=0):
|
def getMixInfoApi(self, mix_id: str, count=35, cursor=0):
|
||||||
@ -437,7 +521,7 @@ class TikTok(object):
|
|||||||
datadict = json.loads(res.text)
|
datadict = json.loads(res.text)
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return awemeList
|
return None
|
||||||
|
|
||||||
|
|
||||||
for aweme in datadict["aweme_list"]:
|
for aweme in datadict["aweme_list"]:
|
||||||
@ -451,7 +535,7 @@ class TikTok(object):
|
|||||||
if aweme["images"] is not None:
|
if aweme["images"] is not None:
|
||||||
awemeType = 1
|
awemeType = 1
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print("[ 警告 ]:接口中未找到 images\r")
|
pass
|
||||||
|
|
||||||
# 转换成我们自己的格式
|
# 转换成我们自己的格式
|
||||||
self.result.dataConvert(awemeType, self.result.awemeDict, aweme)
|
self.result.dataConvert(awemeType, self.result.awemeDict, aweme)
|
||||||
@ -459,7 +543,7 @@ class TikTok(object):
|
|||||||
if self.result.awemeDict is not None and self.result.awemeDict != {}:
|
if self.result.awemeDict is not None and self.result.awemeDict != {}:
|
||||||
awemeList.append(copy.deepcopy(self.result.awemeDict))
|
awemeList.append(copy.deepcopy(self.result.awemeDict))
|
||||||
|
|
||||||
return awemeList, datadict["cursor"], datadict["has_more"]
|
return awemeList, datadict, datadict["cursor"], datadict["has_more"]
|
||||||
|
|
||||||
def getMixInfo(self, mix_id: str, count=35, number=0):
|
def getMixInfo(self, mix_id: str, count=35, number=0):
|
||||||
print('[ 提示 ]:正在请求的合集 id = %s\r\n' % mix_id)
|
print('[ 提示 ]:正在请求的合集 id = %s\r\n' % mix_id)
|
||||||
@ -558,14 +642,14 @@ class TikTok(object):
|
|||||||
res = requests.get(url=url, headers=self.headers)
|
res = requests.get(url=url, headers=self.headers)
|
||||||
datadict = json.loads(res.text)
|
datadict = json.loads(res.text)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return mixIdlist
|
return None
|
||||||
|
|
||||||
for mix in datadict["mix_infos"]:
|
for mix in datadict["mix_infos"]:
|
||||||
mixIdNameDict={}
|
mixIdNameDict={}
|
||||||
mixIdNameDict["https://www.douyin.com/collection/" + mix["mix_id"]] = mix["mix_name"]
|
mixIdNameDict["https://www.douyin.com/collection/" + mix["mix_id"]] = mix["mix_name"]
|
||||||
mixIdlist.append(mixIdNameDict)
|
mixIdlist.append(mixIdNameDict)
|
||||||
|
|
||||||
return mixIdlist, datadict["cursor"], datadict["has_more"]
|
return mixIdlist, datadict, datadict["cursor"], datadict["has_more"]
|
||||||
|
|
||||||
|
|
||||||
def getUserAllMixInfo(self, sec_uid, count=35, number=0):
|
def getUserAllMixInfo(self, sec_uid, count=35, number=0):
|
||||||
@ -644,7 +728,7 @@ class TikTok(object):
|
|||||||
datadict = json.loads(res.text)
|
datadict = json.loads(res.text)
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return awemeList
|
return None
|
||||||
|
|
||||||
|
|
||||||
for aweme in datadict["aweme_list"]:
|
for aweme in datadict["aweme_list"]:
|
||||||
@ -657,7 +741,7 @@ class TikTok(object):
|
|||||||
if aweme["images"] is not None:
|
if aweme["images"] is not None:
|
||||||
awemeType = 1
|
awemeType = 1
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print("[ 警告 ]:接口中未找到 images\r")
|
pass
|
||||||
|
|
||||||
# 转换成我们自己的格式
|
# 转换成我们自己的格式
|
||||||
self.result.dataConvert(awemeType, self.result.awemeDict, aweme)
|
self.result.dataConvert(awemeType, self.result.awemeDict, aweme)
|
||||||
@ -665,7 +749,7 @@ class TikTok(object):
|
|||||||
if self.result.awemeDict is not None and self.result.awemeDict != {}:
|
if self.result.awemeDict is not None and self.result.awemeDict != {}:
|
||||||
awemeList.append(copy.deepcopy(self.result.awemeDict))
|
awemeList.append(copy.deepcopy(self.result.awemeDict))
|
||||||
|
|
||||||
return awemeList, datadict["cursor"], datadict["has_more"]
|
return awemeList, datadict, datadict["cursor"], datadict["has_more"]
|
||||||
|
|
||||||
def getMusicInfo(self, music_id: str, count=35, number=0):
|
def getMusicInfo(self, music_id: str, count=35, number=0):
|
||||||
print('[ 提示 ]:正在请求的音乐集合 id = %s\r\n' % music_id)
|
print('[ 提示 ]:正在请求的音乐集合 id = %s\r\n' % music_id)
|
||||||
|
155
TikTokWeb.py
155
TikTokWeb.py
@ -17,40 +17,39 @@ from flask import *
|
|||||||
from TikTok import TikTok
|
from TikTok import TikTok
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
def work(share_link):
|
|
||||||
|
def work(share_link, max_cursor, mode, cookie):
|
||||||
tk = TikTok()
|
tk = TikTok()
|
||||||
|
|
||||||
|
if cookie is not None and cookie != "":
|
||||||
|
tk.headers["Cookie"] = cookie
|
||||||
|
|
||||||
url = tk.getShareLink(share_link)
|
url = tk.getShareLink(share_link)
|
||||||
key_type, key = tk.getKey(url)
|
key_type, key = tk.getKey(url)
|
||||||
if key_type == "aweme":
|
|
||||||
datanew, dataraw = tk.getAwemeInfo(key)
|
|
||||||
elif key_type == "live":
|
|
||||||
datanew = tk.getLiveInfo(key, option=False)
|
|
||||||
return datanew
|
|
||||||
|
|
||||||
def work2(share_link,max_cursor,mode,cookie):
|
datalist = None
|
||||||
tk = TikTok()
|
rawdatalist = None
|
||||||
tk.headers["Cookie"] = cookie
|
cursor = None
|
||||||
url = tk.getShareLink(share_link)
|
has_more = None
|
||||||
key_type, key = tk.getKey(url)
|
|
||||||
|
|
||||||
datalist = []
|
|
||||||
cursor = max_cursor
|
|
||||||
has_more = 0
|
|
||||||
if key_type == "user":
|
if key_type == "user":
|
||||||
if mode == 'post' or mode == 'like':
|
if mode == 'post' or mode == 'like':
|
||||||
datalist, cursor, has_more = tk.getUserInfoApi(sec_uid=key, mode=mode, count=35, max_cursor=max_cursor)
|
datalist, rawdatalist, cursor, has_more = tk.getUserInfoApi(sec_uid=key, mode=mode, count=35, max_cursor=max_cursor)
|
||||||
elif mode == 'mix':
|
elif mode == 'mix':
|
||||||
datalist, cursor, has_more = tk.getUserAllMixInfoApi(sec_uid=key, count=35, cursor=max_cursor)
|
datalist, rawdatalist, cursor, has_more = tk.getUserAllMixInfoApi(sec_uid=key, count=35, cursor=max_cursor)
|
||||||
elif key_type == "mix":
|
elif key_type == "mix":
|
||||||
datalist, cursor, has_more = tk.getMixInfoApi(mix_id=key, count=35, cursor=max_cursor)
|
datalist, rawdatalist, cursor, has_more = tk.getMixInfoApi(mix_id=key, count=35, cursor=max_cursor)
|
||||||
elif key_type == "music":
|
elif key_type == "music":
|
||||||
datalist, cursor, has_more = tk.getMusicInfoApi(music_id=key, count=35, cursor=max_cursor)
|
datalist, rawdatalist, cursor, has_more = tk.getMusicInfoApi(music_id=key, count=35, cursor=max_cursor)
|
||||||
|
elif key_type == "aweme":
|
||||||
|
datalist, rawdatalist = tk.getAwemeInfoApi(aweme_id=key)
|
||||||
|
elif key_type == "live":
|
||||||
|
datalist, rawdatalist = tk.getLiveInfoApi(web_rid=key)
|
||||||
|
|
||||||
datadict={}
|
datadict={}
|
||||||
|
|
||||||
if datalist is not None and datalist != []:
|
if datalist is not None and datalist != []:
|
||||||
datadict["data"] = datalist
|
datadict["data"] = datalist
|
||||||
|
datadict["rawdata"] = rawdatalist
|
||||||
datadict["cursor"] = cursor
|
datadict["cursor"] = cursor
|
||||||
datadict["has_more"] = has_more
|
datadict["has_more"] = has_more
|
||||||
datadict["status_code"] = 200
|
datadict["status_code"] = 200
|
||||||
@ -58,6 +57,32 @@ def work2(share_link,max_cursor,mode,cookie):
|
|||||||
datadict["status_code"] = 500
|
datadict["status_code"] = 500
|
||||||
return datadict
|
return datadict
|
||||||
|
|
||||||
|
def deal(mode=None):
|
||||||
|
usefuldict = {}
|
||||||
|
if request.headers.get("content_type") == "application/json":
|
||||||
|
result = request.get_json(force=True)
|
||||||
|
else:
|
||||||
|
result = request.form
|
||||||
|
|
||||||
|
share_link = None
|
||||||
|
cursor = 0
|
||||||
|
cookie = None
|
||||||
|
|
||||||
|
try:
|
||||||
|
share_link = result["share_link"]
|
||||||
|
cursor = result["cursor"]
|
||||||
|
cookie = result["cookie"]
|
||||||
|
except Exception as e:
|
||||||
|
usefuldict["status_code"] = 500
|
||||||
|
|
||||||
|
try:
|
||||||
|
if share_link is not None and share_link != "":
|
||||||
|
usefuldict = work(share_link, cursor, mode, cookie)
|
||||||
|
usefuldict["status_code"] = 200
|
||||||
|
except Exception as e:
|
||||||
|
usefuldict["status_code"] = 500
|
||||||
|
return jsonify(usefuldict)
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
# 设置编码
|
# 设置编码
|
||||||
app.config['JSON_AS_ASCII'] = False
|
app.config['JSON_AS_ASCII'] = False
|
||||||
@ -72,101 +97,35 @@ def argument():
|
|||||||
|
|
||||||
@app.route("/douyin/music", methods=["POST"])
|
@app.route("/douyin/music", methods=["POST"])
|
||||||
def douyinMusic():
|
def douyinMusic():
|
||||||
usefuldict = {}
|
return deal()
|
||||||
if request.method == "POST":
|
|
||||||
result = request.form
|
|
||||||
else:
|
|
||||||
usefuldict["status_code"] = 500
|
|
||||||
return jsonify(usefuldict)
|
|
||||||
|
|
||||||
try:
|
|
||||||
usefuldict = work2(result["share_link"], result["cursor"], "",result["cookie"])
|
|
||||||
usefuldict["status_code"] = 200
|
|
||||||
except Exception as error:
|
|
||||||
usefuldict["status_code"] = 500
|
|
||||||
return jsonify(usefuldict)
|
|
||||||
|
|
||||||
@app.route("/douyin/mix", methods=["POST"])
|
@app.route("/douyin/mix", methods=["POST"])
|
||||||
def douyinMix():
|
def douyinMix():
|
||||||
usefuldict = {}
|
return deal()
|
||||||
if request.method == "POST":
|
|
||||||
result = request.form
|
|
||||||
else:
|
|
||||||
usefuldict["status_code"] = 500
|
|
||||||
return jsonify(usefuldict)
|
|
||||||
|
|
||||||
try:
|
|
||||||
usefuldict = work2(result["share_link"], result["cursor"], "",result["cookie"])
|
|
||||||
usefuldict["status_code"] = 200
|
|
||||||
except Exception as error:
|
|
||||||
usefuldict["status_code"] = 500
|
|
||||||
return jsonify(usefuldict)
|
|
||||||
|
|
||||||
|
|
||||||
@app.route("/douyin/user/mix", methods=["POST"])
|
@app.route("/douyin/user/mix", methods=["POST"])
|
||||||
def douyinUserMix():
|
def douyinUserMix():
|
||||||
usefuldict = {}
|
return deal(mode="mix")
|
||||||
if request.method == "POST":
|
|
||||||
result = request.form
|
|
||||||
else:
|
|
||||||
usefuldict["status_code"] = 500
|
|
||||||
return jsonify(usefuldict)
|
|
||||||
|
|
||||||
try:
|
|
||||||
usefuldict = work2(result["share_link"], result["cursor"], "mix", result["cookie"])
|
|
||||||
usefuldict["status_code"] = 200
|
|
||||||
except Exception as error:
|
|
||||||
usefuldict["status_code"] = 500
|
|
||||||
return jsonify(usefuldict)
|
|
||||||
|
|
||||||
@app.route("/douyin/user/like", methods=["POST"])
|
@app.route("/douyin/user/like", methods=["POST"])
|
||||||
def douyinUserLike():
|
def douyinUserLike():
|
||||||
usefuldict = {}
|
return deal(mode="like")
|
||||||
if request.method == "POST":
|
|
||||||
result = request.form
|
|
||||||
else:
|
|
||||||
usefuldict["status_code"] = 500
|
|
||||||
return jsonify(usefuldict)
|
|
||||||
|
|
||||||
try:
|
|
||||||
usefuldict = work2(result["share_link"], result["cursor"], "like", result["cookie"])
|
|
||||||
usefuldict["status_code"] = 200
|
|
||||||
except Exception as error:
|
|
||||||
usefuldict["status_code"] = 500
|
|
||||||
return jsonify(usefuldict)
|
|
||||||
|
|
||||||
@app.route("/douyin/user/post", methods=["POST"])
|
@app.route("/douyin/user/post", methods=["POST"])
|
||||||
def douyinUserPost():
|
def douyinUserPost():
|
||||||
usefuldict = {}
|
return deal(mode="post")
|
||||||
if request.method == "POST":
|
|
||||||
result = request.form
|
|
||||||
else:
|
|
||||||
usefuldict["status_code"] = 500
|
|
||||||
return jsonify(usefuldict)
|
|
||||||
|
|
||||||
try:
|
@app.route("/douyin/aweme", methods=["POST"])
|
||||||
usefuldict = work2(result["share_link"], result["cursor"], "post", result["cookie"])
|
def douyinAweme():
|
||||||
usefuldict["status_code"] = 200
|
return deal()
|
||||||
except Exception as error:
|
|
||||||
usefuldict["status_code"] = 500
|
@app.route("/douyin/live", methods=["POST"])
|
||||||
return jsonify(usefuldict)
|
def douyinLive():
|
||||||
|
return deal()
|
||||||
|
|
||||||
@app.route("/douyin", methods=["POST"])
|
@app.route("/douyin", methods=["POST"])
|
||||||
def douyin():
|
def douyin():
|
||||||
usefuldict = {}
|
return deal()
|
||||||
if request.method == "POST":
|
|
||||||
result = request.form
|
|
||||||
print(result)
|
|
||||||
else:
|
|
||||||
usefuldict["status_code"] = 500
|
|
||||||
return jsonify(usefuldict)
|
|
||||||
|
|
||||||
try:
|
|
||||||
usefuldict = work(result["share_link"])
|
|
||||||
usefuldict["status_code"] = 200
|
|
||||||
except Exception as error:
|
|
||||||
usefuldict["status_code"] = 500
|
|
||||||
return jsonify(usefuldict)
|
|
||||||
|
|
||||||
|
|
||||||
@app.route("/", methods=["GET"])
|
@app.route("/", methods=["GET"])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user