mirror of
https://github.com/zjk2017/ArcadiaScriptPublic.git
synced 2025-12-19 08:24:34 +08:00
Update 交汇点.py
This commit is contained in:
14
交汇点.py
14
交汇点.py
@@ -4,9 +4,8 @@
|
|||||||
抓任意包请求头 Authorization
|
抓任意包请求头 Authorization
|
||||||
变量名: JHD
|
变量名: JHD
|
||||||
部分报错不影响后续执行 偶尔报错正常
|
部分报错不影响后续执行 偶尔报错正常
|
||||||
cron: 3 7,12,18 * * *
|
cron: 39 7 * * *
|
||||||
const $ = new Env("交汇点");
|
const $ = new Env("交汇点");
|
||||||
原作者 xiaobu689
|
|
||||||
"""
|
"""
|
||||||
import os
|
import os
|
||||||
import random
|
import random
|
||||||
@@ -72,8 +71,15 @@ class JHD():
|
|||||||
question = ''
|
question = ''
|
||||||
date_ = time.strftime("%Y-%m-%d", time.localtime())
|
date_ = time.strftime("%Y-%m-%d", time.localtime())
|
||||||
url = f'https://jhd.xhby.net/activity/api/v1/story/exam-topic-infos/{date_}'
|
url = f'https://jhd.xhby.net/activity/api/v1/story/exam-topic-infos/{date_}'
|
||||||
response = requests.get(url, headers=self.headers)
|
|
||||||
response_json = response.json()
|
try:
|
||||||
|
response = requests.get(url, headers=self.headers)
|
||||||
|
response.raise_for_status()
|
||||||
|
response_json = response.json()
|
||||||
|
except requests.exceptions.RequestException as e:
|
||||||
|
print(f'请求daily_question接口失败: {e}')
|
||||||
|
# time.sleep(120) # 延迟120秒,即2分钟
|
||||||
|
# self.daily_question() # 递归调用一次,重新尝试
|
||||||
if response_json['code'] == 0:
|
if response_json['code'] == 0:
|
||||||
uuid = response_json["data"]["uuid"]
|
uuid = response_json["data"]["uuid"]
|
||||||
examId = response_json["data"]["examId"]
|
examId = response_json["data"]["examId"]
|
||||||
|
|||||||
Reference in New Issue
Block a user