Compare commits

...

4 Commits

Author SHA1 Message Date
LastNever
e929201dd0
Merge branch 'Sitoi:main' into main 2024-03-20 09:28:03 +08:00
shitao
46349fbe45 ⬆️ 更新(__version__.py):将版本号从24.3.11升级到24.3.19
 功能(docs/pages/history):添加2024-03-19的更新日志
  📝 文档(docs/pages/history/_meta.json):更新_meta.json文件,添加2024-03-19的日志记录
  📝 文档(docs/theme.config.tsx):更新banner的链接和文本,指向最新的版本发布信息
2024-03-19 09:37:20 +08:00
shitao
7428478292 功能(iqiyi/main.py):添加新的参数extendParams到请求中 2024-03-19 09:33:57 +08:00
shitao
edef9583c7 🐛 修复(main.py):将休眠时间从10秒更改为20秒,以防止过快的请求速度导致的问题 2024-03-19 09:33:12 +08:00
6 changed files with 30 additions and 5 deletions

View File

@ -1 +1 @@
__version__ = "24.3.11"
__version__ = "24.3.19"

View File

@ -332,7 +332,7 @@ userId: 2
continue
reservation_params = self.act_params(max_shop_id, item)
reservation_msg = self.reservation(reservation_params)
time.sleep(10)
time.sleep(20)
award_msg = self.getUserEnergyAward()
msg.append(reservation_msg)
msg.append(award_msg)

View File

@ -187,6 +187,23 @@ class IQIYI(CheckIn):
"lotteryType": "0",
"actCode": "0k9GkUcjqqj4tne8",
}
params = {
"P00001": p00001,
"deviceID": str(uuid4()),
"version": "15.3.0",
"platform": str(uuid4())[:16],
"lotteryType": "0",
"actCode": "0k9GkUcjqqj4tne8",
"extendParams": json.dumps(
{
"appIds": "iqiyi_pt_vip_iphone_video_autorenew_12m_348yuan_v2",
"supportSk2Identity": True,
"testMode": "0",
"iosSystemVersion": "17.4",
"bundleId": "com.qiyi.iphone",
}
),
}
res = requests.get(url, params=params).json()
msgs = []
if res.get("code") == "A00000":

View File

@ -0,0 +1,7 @@
# 2024-03-19
![PyPI](https://img.shields.io/badge/Pypi-v24.3.19-brightgreen)
## 🐛 修复
- 修复「爱奇艺」摇一摇失败的 BUG

View File

@ -1,4 +1,5 @@
{
"2024-03-19": "2024-03-19",
"2024-03-11": "2024-03-11",
"2024-03-07": "2024-03-07",
"2024-02-27": "2024-02-27",

View File

@ -72,13 +72,13 @@ const config: DocsThemeConfig = {
}
},
banner: {
key: '2024.3.11-release',
key: '2024.3.19-release',
text: (
<a
href="/dailycheckin/history/2024-03-11/"
href="/dailycheckin/history/2024-03-19/"
target="_blank"
>
🎉 DailyCheckIn 2024.3.11 is released. Read more
🎉 DailyCheckIn 2024.3.19 is released. Read more
</a>
),
},