2022-07-26 10:07:31 +00:00
|
|
|
|
import asyncio
|
|
|
|
|
import re
|
2022-10-08 00:59:08 +00:00
|
|
|
|
import time
|
2022-10-15 13:06:42 +00:00
|
|
|
|
from datetime import datetime
|
2022-10-11 04:00:55 +00:00
|
|
|
|
from json import JSONDecodeError
|
2022-10-11 12:34:54 +00:00
|
|
|
|
from typing import List, Optional, Dict
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
2022-10-11 04:00:55 +00:00
|
|
|
|
from genshin import Client, InvalidCookies
|
|
|
|
|
from genshin.utility.ds import generate_dynamic_secret
|
2022-10-13 07:38:47 +00:00
|
|
|
|
from genshin.utility.uid import recognize_genshin_server
|
2022-07-26 10:07:31 +00:00
|
|
|
|
from httpx import AsyncClient
|
2022-10-14 04:05:40 +00:00
|
|
|
|
from pydantic import BaseModel, validator
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
2022-10-08 00:59:08 +00:00
|
|
|
|
from modules.apihelper.base import ArtworkImage, PostInfo
|
|
|
|
|
from modules.apihelper.helpers import get_device_id
|
|
|
|
|
from modules.apihelper.request.hoyorequest import HOYORequest
|
2022-10-11 04:00:55 +00:00
|
|
|
|
from utils.log import logger
|
2022-10-08 00:59:08 +00:00
|
|
|
|
from utils.typedefs import JSONDict
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Hyperion:
|
2022-10-08 00:59:08 +00:00
|
|
|
|
"""米忽悠bbs相关API请求
|
|
|
|
|
|
2022-07-26 10:07:31 +00:00
|
|
|
|
该名称来源于米忽悠的安卓BBS包名结尾,考虑到大部分重要的功能确实是在移动端实现了
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
POST_FULL_URL = "https://bbs-api.mihoyo.com/post/wapi/getPostFull"
|
|
|
|
|
POST_FULL_IN_COLLECTION_URL = "https://bbs-api.mihoyo.com/post/wapi/getPostFullInCollection"
|
|
|
|
|
GET_NEW_LIST_URL = "https://bbs-api.mihoyo.com/post/wapi/getNewsList"
|
2022-10-13 07:38:47 +00:00
|
|
|
|
GET_OFFICIAL_RECOMMENDED_POSTS_URL = "https://bbs-api.mihoyo.com/post/wapi/getOfficialRecommendedPosts"
|
|
|
|
|
|
2022-07-26 10:07:31 +00:00
|
|
|
|
USER_AGENT = (
|
|
|
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) "
|
|
|
|
|
"Chrome/90.0.4430.72 Safari/537.36"
|
2022-10-10 11:07:28 +00:00
|
|
|
|
)
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
|
|
|
|
def __init__(self):
|
2022-10-08 00:59:08 +00:00
|
|
|
|
self.client = HOYORequest(headers=self.get_headers())
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def extract_post_id(text: str) -> int:
|
|
|
|
|
"""
|
|
|
|
|
:param text:
|
|
|
|
|
# https://bbs.mihoyo.com/ys/article/8808224
|
|
|
|
|
# https://m.bbs.mihoyo.com/ys/article/8808224
|
|
|
|
|
:return: post_id
|
|
|
|
|
"""
|
|
|
|
|
rgx = re.compile(r"(?:bbs\.)?mihoyo\.com/[^.]+/article/(?P<article_id>\d+)")
|
|
|
|
|
matches = rgx.search(text)
|
|
|
|
|
if matches is None:
|
|
|
|
|
return -1
|
|
|
|
|
entries = matches.groupdict()
|
|
|
|
|
if entries is None:
|
|
|
|
|
return -1
|
|
|
|
|
try:
|
|
|
|
|
art_id = int(entries.get("article_id"))
|
|
|
|
|
except (IndexError, ValueError, TypeError):
|
|
|
|
|
return -1
|
|
|
|
|
return art_id
|
|
|
|
|
|
|
|
|
|
def get_headers(self, referer: str = "https://bbs.mihoyo.com/"):
|
|
|
|
|
return {"User-Agent": self.USER_AGENT, "Referer": referer}
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def get_list_url_params(forum_id: int, is_good: bool = False, is_hot: bool = False, page_size: int = 20) -> dict:
|
2022-10-14 04:05:40 +00:00
|
|
|
|
return {
|
2022-07-26 10:07:31 +00:00
|
|
|
|
"forum_id": forum_id,
|
|
|
|
|
"gids": 2,
|
|
|
|
|
"is_good": is_good,
|
|
|
|
|
"is_hot": is_hot,
|
|
|
|
|
"page_size": page_size,
|
|
|
|
|
"sort_type": 1,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def get_images_params(
|
|
|
|
|
resize: int = 600, quality: int = 80, auto_orient: int = 0, interlace: int = 1, images_format: str = "jpg"
|
|
|
|
|
):
|
|
|
|
|
"""
|
|
|
|
|
image/resize,s_600/quality,q_80/auto-orient,0/interlace,1/format,jpg
|
|
|
|
|
:param resize: 图片大小
|
|
|
|
|
:param quality: 图片质量
|
|
|
|
|
:param auto_orient: 自适应
|
|
|
|
|
:param interlace: 未知
|
|
|
|
|
:param images_format: 图片格式
|
|
|
|
|
:return:
|
|
|
|
|
"""
|
|
|
|
|
params = (
|
|
|
|
|
f"image/resize,s_{resize}/quality,q_{quality}/auto-orient,"
|
|
|
|
|
f"{auto_orient}/interlace,{interlace}/format,{images_format}"
|
2022-10-10 11:07:28 +00:00
|
|
|
|
)
|
2022-07-26 10:07:31 +00:00
|
|
|
|
return {"x-oss-process": params}
|
|
|
|
|
|
2022-10-13 07:38:47 +00:00
|
|
|
|
async def get_official_recommended_posts(self, gids: int) -> JSONDict:
|
|
|
|
|
params = {"gids": gids}
|
|
|
|
|
response = await self.client.get(url=self.GET_OFFICIAL_RECOMMENDED_POSTS_URL, params=params)
|
|
|
|
|
return response
|
|
|
|
|
|
2022-10-08 00:59:08 +00:00
|
|
|
|
async def get_post_full_in_collection(self, collection_id: int, gids: int = 2, order_type=1) -> JSONDict:
|
2022-07-26 10:07:31 +00:00
|
|
|
|
params = {"collection_id": collection_id, "gids": gids, "order_type": order_type}
|
|
|
|
|
response = await self.client.get(url=self.POST_FULL_IN_COLLECTION_URL, params=params)
|
2022-10-08 00:59:08 +00:00
|
|
|
|
return response
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
2022-10-08 00:59:08 +00:00
|
|
|
|
async def get_post_info(self, gids: int, post_id: int, read: int = 1) -> PostInfo:
|
2022-07-26 10:07:31 +00:00
|
|
|
|
params = {"gids": gids, "post_id": post_id, "read": read}
|
|
|
|
|
response = await self.client.get(self.POST_FULL_URL, params=params)
|
2022-10-08 00:59:08 +00:00
|
|
|
|
return PostInfo.paste_data(response)
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
|
|
|
|
async def get_images_by_post_id(self, gids: int, post_id: int) -> List[ArtworkImage]:
|
2022-10-08 00:59:08 +00:00
|
|
|
|
post_info = await self.get_post_info(gids, post_id)
|
2022-07-26 10:07:31 +00:00
|
|
|
|
art_list = []
|
|
|
|
|
task_list = [
|
2022-10-08 00:59:08 +00:00
|
|
|
|
self.download_image(post_info.post_id, post_info.image_urls[page], page)
|
|
|
|
|
for page in range(len(post_info.image_urls))
|
2022-07-26 10:07:31 +00:00
|
|
|
|
]
|
|
|
|
|
result_list = await asyncio.gather(*task_list)
|
|
|
|
|
for result in result_list:
|
|
|
|
|
if isinstance(result, ArtworkImage):
|
|
|
|
|
art_list.append(result)
|
|
|
|
|
|
|
|
|
|
def take_page(elem: ArtworkImage):
|
|
|
|
|
return elem.page
|
|
|
|
|
|
|
|
|
|
art_list.sort(key=take_page)
|
|
|
|
|
return art_list
|
|
|
|
|
|
|
|
|
|
async def download_image(self, art_id: int, url: str, page: int = 0) -> ArtworkImage:
|
2022-10-08 00:59:08 +00:00
|
|
|
|
response = await self.client.get(url, params=self.get_images_params(resize=2000), timeout=10, de_json=False)
|
|
|
|
|
return ArtworkImage(art_id=art_id, page=page, data=response)
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
|
|
|
|
async def get_new_list(self, gids: int, type_id: int, page_size: int = 20):
|
|
|
|
|
"""
|
|
|
|
|
?gids=2&page_size=20&type=3
|
|
|
|
|
:return:
|
|
|
|
|
"""
|
|
|
|
|
params = {"gids": gids, "page_size": page_size, "type": type_id}
|
|
|
|
|
response = await self.client.get(url=self.GET_NEW_LIST_URL, params=params)
|
2022-10-08 00:59:08 +00:00
|
|
|
|
return response
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
|
|
|
|
async def close(self):
|
2022-10-08 00:59:08 +00:00
|
|
|
|
await self.client.shutdown()
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
|
|
|
|
|
2022-10-14 04:05:40 +00:00
|
|
|
|
class GachaInfoObject(BaseModel):
|
|
|
|
|
begin_time: datetime
|
|
|
|
|
end_time: datetime
|
|
|
|
|
gacha_id: str
|
|
|
|
|
gacha_name: str
|
|
|
|
|
gacha_type: int
|
|
|
|
|
|
|
|
|
|
@validator("begin_time", "end_time", pre=True, allow_reuse=True)
|
|
|
|
|
def validate_time(cls, v):
|
|
|
|
|
return datetime.strptime(v, "%Y-%m-%d %H:%M:%S")
|
|
|
|
|
|
|
|
|
|
|
2022-10-08 00:59:08 +00:00
|
|
|
|
class GachaInfo:
|
|
|
|
|
GACHA_LIST_URL = "https://webstatic.mihoyo.com/hk4e/gacha_info/cn_gf01/gacha/list.json"
|
|
|
|
|
GACHA_INFO_URL = "https://webstatic.mihoyo.com/hk4e/gacha_info/cn_gf01/%s/zh-cn.json"
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
2022-10-08 00:59:08 +00:00
|
|
|
|
USER_AGENT = (
|
|
|
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) "
|
|
|
|
|
"Chrome/90.0.4430.72 Safari/537.36"
|
2022-10-10 11:07:28 +00:00
|
|
|
|
)
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
|
self.headers = {
|
|
|
|
|
"User-Agent": self.USER_AGENT,
|
|
|
|
|
}
|
2022-10-08 00:59:08 +00:00
|
|
|
|
self.client = HOYORequest(headers=self.headers)
|
|
|
|
|
self.cache = {}
|
|
|
|
|
self.cache_ttl = 600
|
|
|
|
|
|
2022-10-14 04:05:40 +00:00
|
|
|
|
async def get_gacha_list_info(self) -> List[GachaInfoObject]:
|
2022-10-08 00:59:08 +00:00
|
|
|
|
if self.cache.get("time", 0) + self.cache_ttl < time.time():
|
|
|
|
|
self.cache.clear()
|
|
|
|
|
cache = self.cache.get("gacha_list_info")
|
|
|
|
|
if cache is not None:
|
|
|
|
|
return cache
|
|
|
|
|
req = await self.client.get(self.GACHA_LIST_URL)
|
2022-10-14 04:05:40 +00:00
|
|
|
|
data = [GachaInfoObject(**i) for i in req["list"]]
|
|
|
|
|
self.cache["gacha_list_info"] = data
|
2022-10-08 00:59:08 +00:00
|
|
|
|
self.cache["time"] = time.time()
|
2022-10-14 04:05:40 +00:00
|
|
|
|
return data
|
2022-10-08 00:59:08 +00:00
|
|
|
|
|
|
|
|
|
async def get_gacha_info(self, gacha_id: str) -> dict:
|
|
|
|
|
cache = self.cache.get(gacha_id)
|
|
|
|
|
if cache is not None:
|
|
|
|
|
return cache
|
|
|
|
|
req = await self.client.get(self.GACHA_INFO_URL % gacha_id)
|
|
|
|
|
self.cache[gacha_id] = req
|
|
|
|
|
return req
|
|
|
|
|
|
2022-10-15 13:06:42 +00:00
|
|
|
|
async def close(self):
|
|
|
|
|
await self.client.shutdown()
|
|
|
|
|
|
2022-10-08 00:59:08 +00:00
|
|
|
|
|
|
|
|
|
class SignIn:
|
|
|
|
|
LOGIN_URL = "https://webapi.account.mihoyo.com/Api/login_by_mobilecaptcha"
|
|
|
|
|
S_TOKEN_URL = (
|
2022-10-11 04:00:55 +00:00
|
|
|
|
"https://api-takumi.mihoyo.com/auth/api/getMultiTokenByLoginTicket?login_ticket={0}&token_types=3&uid={1}"
|
2022-10-10 11:07:28 +00:00
|
|
|
|
)
|
2022-10-08 00:59:08 +00:00
|
|
|
|
BBS_URL = "https://api-takumi.mihoyo.com/account/auth/api/webLoginByMobile"
|
|
|
|
|
USER_AGENT = (
|
|
|
|
|
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) "
|
|
|
|
|
"AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15"
|
2022-10-10 11:07:28 +00:00
|
|
|
|
)
|
2022-10-08 00:59:08 +00:00
|
|
|
|
HEADERS = {
|
|
|
|
|
"Host": "webapi.account.mihoyo.com",
|
|
|
|
|
"Connection": "keep-alive",
|
|
|
|
|
"sec-ch-ua": '".Not/A)Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"',
|
|
|
|
|
"DNT": "1",
|
|
|
|
|
"x-rpc-device_model": "OS X 10.15.7",
|
|
|
|
|
"sec-ch-ua-mobile": "?0",
|
|
|
|
|
"User-Agent": USER_AGENT,
|
|
|
|
|
"x-rpc-device_id": get_device_id(USER_AGENT),
|
|
|
|
|
"Accept": "application/json, text/plain, */*",
|
|
|
|
|
"x-rpc-device_name": "Microsoft Edge 103.0.1264.62",
|
|
|
|
|
"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
|
|
|
|
|
"x-rpc-client_type": "4",
|
|
|
|
|
"sec-ch-ua-platform": '"macOS"',
|
|
|
|
|
"Origin": "https://user.mihoyo.com",
|
|
|
|
|
"Sec-Fetch-Site": "same-site",
|
|
|
|
|
"Sec-Fetch-Mode": "cors",
|
|
|
|
|
"Sec-Fetch-Dest": "empty",
|
|
|
|
|
"Referer": "https://user.mihoyo.com/",
|
|
|
|
|
"Accept-Encoding": "gzip, deflate, br",
|
|
|
|
|
"Accept-Language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6",
|
|
|
|
|
}
|
|
|
|
|
BBS_HEADERS = {
|
|
|
|
|
"Host": "api-takumi.mihoyo.com",
|
|
|
|
|
"Content-Type": "application/json;charset=utf-8",
|
|
|
|
|
"Origin": "https://bbs.mihoyo.com",
|
|
|
|
|
"Accept-Encoding": "gzip, deflate, br",
|
|
|
|
|
"Connection": "keep-alive",
|
|
|
|
|
"Accept": "application/json, text/plain, */*",
|
|
|
|
|
"User-Agent": USER_AGENT,
|
|
|
|
|
"Referer": "https://bbs.mihoyo.com/",
|
|
|
|
|
"Accept-Language": "zh-CN,zh-Hans;q=0.9",
|
|
|
|
|
}
|
2022-10-11 04:00:55 +00:00
|
|
|
|
AUTHKEY_API = "https://api-takumi.mihoyo.com/binding/api/genAuthKey"
|
|
|
|
|
GACHA_HEADERS = {
|
|
|
|
|
"User-Agent": "okhttp/4.8.0",
|
|
|
|
|
"x-rpc-app_version": "2.28.1",
|
|
|
|
|
"x-rpc-sys_version": "12",
|
|
|
|
|
"x-rpc-client_type": "5",
|
|
|
|
|
"x-rpc-channel": "mihoyo",
|
|
|
|
|
"x-rpc-device_id": get_device_id(USER_AGENT),
|
|
|
|
|
"x-rpc-device_name": "Mi 10",
|
|
|
|
|
"x-rpc-device_model": "Mi 10",
|
|
|
|
|
"Referer": "https://app.mihoyo.com",
|
|
|
|
|
"Host": "api-takumi.mihoyo.com",
|
|
|
|
|
}
|
2022-10-08 00:59:08 +00:00
|
|
|
|
|
2022-10-11 12:34:54 +00:00
|
|
|
|
def __init__(self, phone: int = 0, uid: int = 0, cookie: Dict = None):
|
2022-10-08 00:59:08 +00:00
|
|
|
|
self.phone = phone
|
|
|
|
|
self.client = AsyncClient()
|
2022-10-11 12:34:54 +00:00
|
|
|
|
self.uid = uid
|
|
|
|
|
self.cookie = cookie if cookie is not None else {}
|
|
|
|
|
self.parse_uid()
|
2022-10-08 00:59:08 +00:00
|
|
|
|
|
|
|
|
|
def parse_uid(self):
|
2022-07-26 10:07:31 +00:00
|
|
|
|
"""
|
2022-10-08 00:59:08 +00:00
|
|
|
|
从cookie中获取uid
|
|
|
|
|
:param self:
|
2022-07-26 10:07:31 +00:00
|
|
|
|
:return:
|
|
|
|
|
"""
|
2022-10-11 12:34:54 +00:00
|
|
|
|
if not self.cookie:
|
2022-07-26 10:07:31 +00:00
|
|
|
|
return
|
2022-10-08 00:59:08 +00:00
|
|
|
|
for item in ["login_uid", "stuid", "ltuid", "account_id"]:
|
|
|
|
|
if item in self.cookie:
|
|
|
|
|
self.uid = self.cookie[item]
|
|
|
|
|
break
|
|
|
|
|
for item in ["login_uid", "stuid", "ltuid", "account_id"]:
|
|
|
|
|
self.cookie[item] = self.uid
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
2022-10-08 00:59:08 +00:00
|
|
|
|
@staticmethod
|
|
|
|
|
def check_error(data: dict) -> bool:
|
2022-07-26 10:07:31 +00:00
|
|
|
|
"""
|
2022-10-08 00:59:08 +00:00
|
|
|
|
检查是否有错误
|
|
|
|
|
:param data:
|
2022-07-26 10:07:31 +00:00
|
|
|
|
:return:
|
|
|
|
|
"""
|
2022-10-08 00:59:08 +00:00
|
|
|
|
res_data = data.get("data", {})
|
|
|
|
|
return res_data.get("msg") == "验证码错误" or res_data.get("info") == "Captcha not match Err"
|
|
|
|
|
|
|
|
|
|
async def login(self, captcha: int) -> bool:
|
|
|
|
|
data = await self.client.post(
|
|
|
|
|
self.LOGIN_URL,
|
|
|
|
|
data={"mobile": str(self.phone), "mobile_captcha": str(captcha), "source": "user.mihoyo.com"},
|
|
|
|
|
headers=self.HEADERS,
|
|
|
|
|
)
|
|
|
|
|
res_json = data.json()
|
|
|
|
|
if self.check_error(res_json):
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
for k, v in data.cookies.items():
|
|
|
|
|
self.cookie[k] = v
|
|
|
|
|
|
2022-10-11 12:34:54 +00:00
|
|
|
|
if "login_ticket" not in self.cookie:
|
|
|
|
|
return False
|
2022-10-08 00:59:08 +00:00
|
|
|
|
self.parse_uid()
|
|
|
|
|
return bool(self.uid)
|
|
|
|
|
|
|
|
|
|
async def get_s_token(self):
|
2022-10-11 12:34:54 +00:00
|
|
|
|
if not self.cookie.get("login_ticket") or not self.uid:
|
|
|
|
|
return
|
2022-10-08 00:59:08 +00:00
|
|
|
|
data = await self.client.get(
|
|
|
|
|
self.S_TOKEN_URL.format(self.cookie["login_ticket"], self.uid), headers={"User-Agent": self.USER_AGENT}
|
|
|
|
|
)
|
|
|
|
|
res_json = data.json()
|
|
|
|
|
res_data = res_json.get("data", {}).get("list", [])
|
|
|
|
|
for i in res_data:
|
|
|
|
|
if i.get("name") and i.get("token"):
|
|
|
|
|
self.cookie[i.get("name")] = i.get("token")
|
|
|
|
|
|
|
|
|
|
async def get_token(self, captcha: int) -> bool:
|
|
|
|
|
data = await self.client.post(
|
|
|
|
|
self.BBS_URL,
|
|
|
|
|
headers=self.BBS_HEADERS,
|
|
|
|
|
json={
|
|
|
|
|
"is_bh2": False,
|
|
|
|
|
"mobile": str(self.phone),
|
|
|
|
|
"captcha": str(captcha),
|
|
|
|
|
"action_type": "login",
|
|
|
|
|
"token_type": 6,
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
res_json = data.json()
|
|
|
|
|
if self.check_error(res_json):
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
for k, v in data.cookies.items():
|
|
|
|
|
self.cookie[k] = v
|
|
|
|
|
|
|
|
|
|
return "cookie_token" in self.cookie
|
2022-10-11 04:00:55 +00:00
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
async def get_authkey_by_stoken(client: Client) -> Optional[str]:
|
|
|
|
|
"""通过 stoken 获取 authkey"""
|
|
|
|
|
try:
|
|
|
|
|
headers = SignIn.GACHA_HEADERS.copy()
|
|
|
|
|
headers["DS"] = generate_dynamic_secret("ulInCDohgEs557j0VsPDYnQaaz6KJcv5")
|
|
|
|
|
data = await client.cookie_manager.request(
|
|
|
|
|
SignIn.AUTHKEY_API,
|
|
|
|
|
method="POST",
|
|
|
|
|
json={
|
|
|
|
|
"auth_appid": "webview_gacha",
|
|
|
|
|
"game_biz": "hk4e_cn",
|
|
|
|
|
"game_uid": client.uid,
|
|
|
|
|
"region": recognize_genshin_server(client.uid),
|
|
|
|
|
},
|
|
|
|
|
headers=headers,
|
|
|
|
|
)
|
|
|
|
|
return data.get("authkey")
|
|
|
|
|
except JSONDecodeError:
|
|
|
|
|
logger.warning("Stoken 获取 Authkey JSON解析失败")
|
|
|
|
|
except InvalidCookies:
|
|
|
|
|
logger.warning("Stoken 获取 Authkey 失败 | 用户 Stoken 失效")
|
|
|
|
|
return None
|