2 Star 1 Fork 14

Admin/WPS_daily_check_in

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
WPS_sign_in.py 543 Bytes
一键复制 编辑 原始数据 按行查看 历史
datugou 提交于 2020-11-25 09:34 . Update WPS_sign_in.py
import random, os, json
import requests
try:
wps_sid = os.getenv('WPS_SID').strip()
s = requests.session()
question = 'https://vip.wps.cn/checkcode/signin/question'
r = s.get(question, cookies = {'wps_sid': wps_sid})
data = {'platform': '2',
'answer': '1',
'auth_type': 'answer'}
answer = 'https://vip.wps.cn/sigin/do'
r = s.post(answer, cookies = {'wps_sid': wps_sid}, data = data)
except:
print('没有配置SID,如需积分签到,请到 settings->secrets 中配置 WPS_SID')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jydzxt_yuanwk430/WPS_daily_check_in.git
git@gitee.com:jydzxt_yuanwk430/WPS_daily_check_in.git
jydzxt_yuanwk430
WPS_daily_check_in
WPS_daily_check_in
main

搜索帮助