1 Star 0 Fork 146

unknown/glados-checkin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
checkin.py 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
xiaomustudent 提交于 2020-06-28 21:57 . Update checkin.py
import requests,json,os
# server酱开关,填off不开启(默认),填on同时开启cookie失效通知和签到成功通知
sever = os.environ["SERVE"]
# 填写server酱sckey,不开启server酱则不用填
sckey = os.environ["SCKEY"]
#'SCU89402Tf98b7f01ca3394b9ce9aa5e2ed1abbae5e6ca42796bb9'
# 填入glados账号对应cookie
cookie = os.environ["COOKIE"]
#'__cfduid=d3459ec306384ca67a65170f8e2a5bd561593049467; _ga=GA1.2.766373509.1593049472; _gid=GA1.2.1338236108.1593049472; koa:sess=eyJ1c2VySWQiOjQxODMwLCJfZXhwaXJlIjoxNjE4OTY5NTI4MzY4LCJfbWF4QWdlIjoyNTkyMDAwMDAwMH0=; koa:sess.sig=6qG8SyMh_5KpSB6LBc9yRviaPvI'
def start():
url= "https://glados.rocks/api/user/checkin"
url2= "https://glados.rocks/api/user/status"
referer = 'https://glados.rocks/console/checkin'
checkin = requests.post(url,headers={'cookie': cookie ,'referer': referer })
state = requests.get(url2,headers={'cookie': cookie ,'referer': referer})
# print(res)
if 'message' in checkin.text:
mess = checkin.json()['message']
time = state.json()['data']['leftDays']
time = time.split('.')[0]
#print(time)
if sever == 'on':
requests.get('https://sc.ftqq.com/' + sckey + '.send?text='+mess+',you have '+time+' days left')
else:
requests.get('https://sc.ftqq.com/' + sckey + '.send?text=cookie过期')
def main_handler(event, context):
return start()
if __name__ == '__main__':
start()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dt332142558/glados-checkin.git
git@gitee.com:dt332142558/glados-checkin.git
dt332142558
glados-checkin
glados-checkin
master

搜索帮助