├── .gitignore ├── LICENSE ├── README.md ├── images ├── Step1.png ├── checkin_config.png ├── checkin_info.png ├── nssm_1.png ├── nssm_2.png ├── pushplus_token.png ├── qinglong_1.png ├── qinglong_2.png └── qinglong_3.png ├── version.json ├── yaoys_aliyunpan_daily_task.json ├── yaoys_checkin_config.json ├── yaoys_checkin_config_解释说明.json ├── 使用说明.md ├── 更新日志.md ├── 版本需求&问题.md ├── 阿里云盘新版本签到说明.md └── 青龙面板配置使用.md /.gitignore: -------------------------------------------------------------------------------- 1 | ### Python template 2 | # Byte-compiled / optimized / DLL files 3 | __pycache__/ 4 | *.py[cod] 5 | *$py.class 6 | .idea 7 | # C extensions 8 | *.so 9 | 10 | # Distribution / packaging 11 | .Python 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | wheels/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | cover/ 54 | 55 | # Translations 56 | *.mo 57 | *.pot 58 | 59 | # Django stuff: 60 | *.log 61 | local_settings.py 62 | db.sqlite3 63 | db.sqlite3-journal 64 | 65 | # Flask stuff: 66 | instance/ 67 | .webassets-cache 68 | 69 | # Scrapy stuff: 70 | .scrapy 71 | 72 | # Sphinx documentation 73 | docs/_build/ 74 | 75 | # PyBuilder 76 | .pybuilder/ 77 | target/ 78 | 79 | # Jupyter Notebook 80 | .ipynb_checkpoints 81 | 82 | # IPython 83 | profile_default/ 84 | ipython_config.py 85 | 86 | # pyenv 87 | # For a library or package, you might want to ignore these files since the code is 88 | # intended to run in multiple environments; otherwise, check them in: 89 | # .python-version 90 | 91 | # pipenv 92 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 93 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 94 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 95 | # install all needed dependencies. 96 | #Pipfile.lock 97 | 98 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 99 | __pypackages__/ 100 | 101 | # Celery stuff 102 | celerybeat-schedule 103 | celerybeat.pid 104 | 105 | # SageMath parsed files 106 | *.sage.py 107 | 108 | # Environments 109 | .env 110 | .venv 111 | env/ 112 | venv/ 113 | ENV/ 114 | env.bak/ 115 | venv.bak/ 116 | 117 | # Spyder project settings 118 | .spyderproject 119 | .spyproject 120 | 121 | # Rope project settings 122 | .ropeproject 123 | 124 | # mkdocs documentation 125 | /site 126 | 127 | # mypy 128 | .mypy_cache/ 129 | .dmypy.json 130 | dmypy.json 131 | 132 | # Pyre type checker 133 | .pyre/ 134 | 135 | # pytype static type analyzer 136 | .pytype/ 137 | 138 | # Cython debug symbols 139 | cython_debug/ 140 | 141 | !/Config_test.json 142 | 143 | # 项目排除路径 144 | /output/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 阿里云盘签到已挂,增加了签名算法,暂时没有解决方案 2 | # 2024-4-5 发布最后一个版本0.1.19,后续可能不会再更新了 3 | #### 没啥原因,纯粹是懒得搞了,停止更新,目前大部分功能都能用,可能阿里云盘签到有些任务用不了,不过现在阿里云盘都是送限时容量,不能用也无所谓是吧,时光设备间是可以用的,没啥问题。 4 | #### github上有很多优秀的签到项目,大家都可以用 5 | #### 就这样,感谢各位在每个版本提出的意见,各位江湖再见 6 | 7 | #### PS. 如果后面有好的网站,可能还是会搞的,其实我一直有想法把整个签到的程序做成网站的形式,只是暂时没啥时间,后面再说吧 8 | 9 | # 免责声明 10 | - 本仓库发布的脚本及其中涉及的任何解密分析脚本,仅用于测试和学习研究,禁止用于商业用途,不能保证其合法性,准确性,完整性和有效性,请根据情况自行判断。 11 | - 本项目内所有资源文件,禁止任何公众号、自媒体进行任何形式的转载、发布。 12 | - 您必须在下载后的24小时内从计算机或手机中完全删除本仓库所有脚本。 13 | - 任何人使用本仓库脚本不得用于非法用途,任何人将本仓库脚本用于非法用途所造成的一切后果由使用者承担。 14 | - 本人无法100%保证使用本项目之后不会造成账号异常问题,若出现任何账号异常问题本人概不负责,请根据情况自行判断再下载执行!否则请勿下载运行! 15 | - 如果任何单位或个人认为该项目的脚本可能涉及侵犯其权利,则应及时通知并提供相关证明,将在收到认证文件后删除相关脚本。 16 | - 任何以任何方式查看此项目的人或直接或间接使用本项目的任何脚本的使用者都应仔细阅读此声明。 17 | - 本人保留随时更改或补充此免责声明的权利。一旦使用并复制了任何相关脚本或本项目的规则,则视为您已接受此免责声明。 18 | - 您使用或者复制了本仓库且本人制作的任何脚本,则视为 `已接受` 此声明,请仔细阅读 19 | 20 | > ***您使用或者复制了本仓库且本人制作的任何脚本,则视为 `已接受` 此声明,请仔细阅读*** 21 | > ***本平台不会获取用户的账号密码,不会上传至其他任何地方,如果有所怀疑,请直接删除本程序*** 22 | 23 | # gitee仓库地址:https://gitee.com/yaoys95/Auto_checkin_release 24 | 25 | # 由于有些平台的限制,强烈建议签到时间设置的别太早,最好是早上9:30以后 26 | 27 | # 目前已全面支持阿里云盘新版本签到中所有已知的任务,并且自己部署到本地,安全无忧,全网目前唯一的可以部署到自己本地并且支持阿里云盘新版本签到的项目 28 | 29 | # Auto_CheckIn 多平台自动签到 30 | 31 | - 支持多用户签到 32 | - 支持推送消息到pushplus平台(server酱和pushplus选择一个就好,也可以同时推送,如果不配置则不进行推送) 33 | - 支持推送消息到server酱(server酱和pushplus选择一个就好,也可以同时推送,如果不配置则不进行推送) 34 | - **目前已全面支持阿里云盘新版本签到中所有已知的任务,并且自己部署到本地,安全无忧,全网目前唯一的可以部署到自己本地并且支持阿里云盘新版本签到的项目 35 | ** 36 | 37 | ## 已打包文件地址,可直接下载解压使用,配置yaoys_checkin_config.json即可,进入AutoCheckin找到exe点击启动 38 | 39 | ## 阿里云盘文件格式为exe格式,msi名称为安装包,green名称为免安装版 40 | 41 | ## 选择免安装版和安装版下载后解压exe得到程序或者安装包,阿里云盘地址:https://www.aliyundrive.com/s/ZeotJdW4iuh 提取码: 15oy 42 | 43 | ## 版本说明 44 | 45 | - Windows版本:最新版本为v0.1.19 46 | - 青龙面板版本:最新版本为v0.1.19 47 | 48 | ## 最近更新,更多更新内容请查看[更新日志](更新日志.md) 49 | - 2024-4-5 50 | 1. 修复hifini音乐网站签到,**需要更新下cookie才可以生效** 51 | 52 | ## 目前支持签到平台 53 | 54 | - [hifini网站](https://www.hifini.com/) 55 | - [GLaDOS平台](https://glados.rocks/) 56 | - [天翼云盘](https://cloud.189.cn/web/login.html) 57 | - [bilibili直播](https://live.bilibili.com) 58 | - [科研通签到](https://www.ablesci.com/) 59 | - [谷粉学术签到](http://bbs.99lb.net/) 60 | - [阿里云盘](https://www.aliyundrive.com/) 61 | - ~~[Wps会员时长](https://vip.wps.cn/home)(已失效)~~ 62 | - [Wps云空间容量](https://zt.wps.cn/spa/2019/vip_mobile_sign_v2/?csource=pc_cloud_membercenter&position=pc_cloud_sign/) 63 | - [百度贴吧](https://tieba.baidu.com/) 64 | - [交易猫](https://www.jiaoyimao.com/) 65 | - [飘云阁](https://www.chinapyg.com/) 66 | - ~~[吾爱破解](https://www.52pojie.cn/portal.php)(已失效)~~ 67 | 68 | ## 当前需求或BUG(欢迎随时提出issues) 69 | 70 | [版本需求&问题.md](版本需求&问题.md) 71 | 72 | ## 签到列表 73 | 74 | 🟢: 正常运行 🔴: 脚本暂不可用 🔵: 可以执行(需更新) 🟤: 随缘 75 | 76 | | 状态 | 类别 | 终端 | 任务名称 | 名称 | Cookie 时长 | 检查日期 | 备注 | 77 | |-----|----|-----|-------------|-----------------------------------------------------------------------------------------------------|-----------|------------|------------------------| 78 | | 🟢️ | 签到 | WEB | GLADOS | https://glados.rocks/ | 待测试 | 2023-5-13 | 每日签到获取时长,需要开通会员才可以获取时长 | 79 | | 🟢️ | 签到 | WEB | BILIBILI | https://www.bilibili.com/ | 待测试 | 2023-02-21 | 直播签到,获取硬币 | 80 | | 🟢️ | 签到 | WEB | CLOUD189 | https://cloud.189.cn/ | 永久 | 2023-02-21 | 每日签到 +2次抽奖获得空间奖励 | 81 | | 🟢️ | 签到 | WEB | AbleSci | https://www.ablesci.com/ | 待测试 | 2023-5-13 | 科研通平台每日签到获取积分 | 82 | | 🟢️ | 签到 | WEB | gufenxueshu | http://bbs.99lb.net/ | 待测试 | 2023-5-13 | 谷粉学术每日签到获取积分 | 83 | | 🟢️ | 签到 | WEB | Aliyunpan | https://www.aliyundrive.com/ | 待测试 | 2023-5-13 | 阿里云盘每日签到&各种任务 | 84 | | 🔴 | 签到 | WEB | WPS_Vip | https://vip.wps.cn/home | 待测试 | 2023-5-28 | WPS签到的会员时长,有时会失败,失败请手动 | 85 | | 🟤 | 签到 | WEB | WPS_Cloud | https://zt.wps.cn/spa/2019/vip_mobile_sign_v2/?csource=pc_cloud_membercenter&position=pc_cloud_sign | 待测试 | 2023-5-28 | Wps签到得空间容量,有时会失败,失败请手动 | 86 | | 🟢️ | 签到 | WEB | tieba | https://tieba.baidu.com/ | 待测试 | 2023-6-18 | 百度贴吧签到 | 87 | | 🟢️ | 签到 | WEB | jiaoyimao | https://www.jiaoyimao.com/ | 2天/3天 | 2023-7-5 | 交易猫签到得积分 | 88 | | 🟢️ | 签到 | WEB | piaoyunge | https://www.chinapyg.com | 待测试 | 2023-7-10 | 飘云阁签到得积分 | 89 | | 🔴 | 签到 | WEB | wuaipojie | https://www.52pojie.cn/portal.php | 待测试 | 2023-7-10 | 吾爱破解签到得积分 | 90 | | 🟢️ | 签到 | WEB | hifini | https://www.hifini.com/ | 待测试 | 2023-10-29 | hifini网站签到获取金币 | 91 | 92 | ## 支持的通知列表 93 | 94 | server 酱(微信) 95 | 96 | pushplus(微信) 97 | 98 | ## 更新日志 99 | 100 | [更新日志.md](更新日志.md) 101 | 102 | ## 使用教程 103 | 104 | 参考[使用说明.md](使用说明.md) 105 | 106 | ## 青龙面板使用请参考[青龙面板配置使用.md](青龙面板配置使用.md) -------------------------------------------------------------------------------- /images/Step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoysyao/Auto_checkin_release/f9380edba74cc8e5246128a4d79de3804a6e52d2/images/Step1.png -------------------------------------------------------------------------------- /images/checkin_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoysyao/Auto_checkin_release/f9380edba74cc8e5246128a4d79de3804a6e52d2/images/checkin_config.png -------------------------------------------------------------------------------- /images/checkin_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoysyao/Auto_checkin_release/f9380edba74cc8e5246128a4d79de3804a6e52d2/images/checkin_info.png -------------------------------------------------------------------------------- /images/nssm_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoysyao/Auto_checkin_release/f9380edba74cc8e5246128a4d79de3804a6e52d2/images/nssm_1.png -------------------------------------------------------------------------------- /images/nssm_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoysyao/Auto_checkin_release/f9380edba74cc8e5246128a4d79de3804a6e52d2/images/nssm_2.png -------------------------------------------------------------------------------- /images/pushplus_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoysyao/Auto_checkin_release/f9380edba74cc8e5246128a4d79de3804a6e52d2/images/pushplus_token.png -------------------------------------------------------------------------------- /images/qinglong_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoysyao/Auto_checkin_release/f9380edba74cc8e5246128a4d79de3804a6e52d2/images/qinglong_1.png -------------------------------------------------------------------------------- /images/qinglong_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoysyao/Auto_checkin_release/f9380edba74cc8e5246128a4d79de3804a6e52d2/images/qinglong_2.png -------------------------------------------------------------------------------- /images/qinglong_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaoysyao/Auto_checkin_release/f9380edba74cc8e5246128a4d79de3804a6e52d2/images/qinglong_3.png -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "autoCheckin", 3 | "version": [ 4 | { 5 | "0.1.19": "0.1.19" 6 | }, 7 | { 8 | "0.1.18": "0.1.18" 9 | }, 10 | { 11 | "0.1.17": "0.1.17" 12 | }, 13 | { 14 | "0.1.16": "0.1.16" 15 | }, 16 | { 17 | "0.1.15": "0.1.15" 18 | }, 19 | { 20 | "0.1.14": "0.1.14" 21 | }, 22 | { 23 | "0.1.11": "0.1.11" 24 | }, 25 | { 26 | "0.1.10": "0.1.10" 27 | }, 28 | { 29 | "0.1.9": "0.1.9" 30 | }, 31 | { 32 | "0.1.8": "0.1.8" 33 | }, 34 | { 35 | "0.1.3": "0.1.3" 36 | }, 37 | { 38 | "0.1.2": "0.1.2" 39 | }, 40 | { 41 | "0.1.1": "0.1.1" 42 | } 43 | ], 44 | "inherit": true 45 | } -------------------------------------------------------------------------------- /yaoys_aliyunpan_daily_task.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "照片备份任务", 4 | "remind": "备份10张照片到相册即可领取奖励", 5 | "type": "photo" 6 | }, 7 | { 8 | "name": "账号订阅任务", 9 | "remind": "订阅官方账号「阿里盘盘酱」即可领取奖励", 10 | "type": "follow" 11 | }, 12 | { 13 | "name": "视频播放任务", 14 | "remind": "播放1个视频30秒即可领取奖励", 15 | "type": "video" 16 | }, 17 | { 18 | "name": "文件上传任务", 19 | "remind": "上传10个文件到备份盘即可领取奖励", 20 | "type": "file" 21 | }, 22 | { 23 | "name": "接好运瓶任务", 24 | "remind": "接3次好运瓶即可领取奖励", 25 | "type": "lucky" 26 | }, 27 | { 28 | "name": "创建相册任务", 29 | "remind": "创建一个手工相册即可领取奖励", 30 | "type": "album" 31 | }, 32 | { 33 | "name": "快传功能传输文件", 34 | "remind": "使用快传功能传输任意1个文件即可领取奖励", 35 | "type": "quick_pass" 36 | }, 37 | { 38 | "name": "分享好运口令(点击分享-> 今日好运卡)", 39 | "remind": "分享好运口令(点击分享-> 今日好运卡)", 40 | "type": "share_sign" 41 | }, 42 | { 43 | "name": "接好运瓶并转存任意1个文件", 44 | "remind": "接好运瓶并转存任意1个文件", 45 | "type": "fish_save" 46 | }, 47 | { 48 | "name": "开启手机自动备份并持续至少一小时", 49 | "remind": "开启手机自动备份并持续至少一小时||开启「自动同步电脑文件夹至少一小时」", 50 | "type": "auto_backup_one_hour" 51 | }, 52 | { 53 | "name": "开启自动备份并备份满10个文件", 54 | "remind": "开启自动备份并备份满10个文件", 55 | "type": "auto_backup_upload_file" 56 | } 57 | ] -------------------------------------------------------------------------------- /yaoys_checkin_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "common_config": { 3 | "is_print": true, 4 | "is_scheduler": true, 5 | "use_type": 1 6 | }, 7 | "scheduler": { 8 | "timing_day_of_week": "0-6", 9 | "timing_hour": "8", 10 | "timing_minute": "0", 11 | "random_scheduler_time": true, 12 | "random_scheduler_time_hour": [ 13 | 7, 14 | 8, 15 | 9, 16 | 10 17 | ] 18 | }, 19 | "cookieOrUser": { 20 | "able_sci": { 21 | "is_checkin": true, 22 | "push_message": true, 23 | "more_time_sleep": 0, 24 | "time_sleep": 0, 25 | "checkin_verification": [ 26 | { 27 | "cookie": "多账号配置,将多个账号的cookie放入json数组中" 28 | }, 29 | { 30 | "cookie": "多账号配置,将多个账号的cookie放入json数组中" 31 | } 32 | ] 33 | }, 34 | "bilibili_live": { 35 | "is_checkin": true, 36 | "push_message": true, 37 | "more_time_sleep": 0, 38 | "time_sleep": 0, 39 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 40 | }, 41 | "bilibili_icon": { 42 | "is_checkin": true, 43 | "push_message": true, 44 | "more_time_sleep": 0, 45 | "time_sleep": 0, 46 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 47 | }, 48 | "cloud189": { 49 | "is_checkin": true, 50 | "push_message": true, 51 | "more_time_sleep": 0, 52 | "time_sleep": 0, 53 | "checkin_verification": { 54 | "phone": "单账号配置,不需要写在json数组中,多账号参考上面", 55 | "password": "单账号配置,不需要写在json数组中,多账号参考上面" 56 | } 57 | }, 58 | "glados": { 59 | "is_checkin": true, 60 | "push_message": true, 61 | "more_time_sleep": 0, 62 | "time_sleep": 0, 63 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 64 | }, 65 | "gu_fen_xue_shu": { 66 | "is_checkin": true, 67 | "push_message": true, 68 | "more_time_sleep": 0, 69 | "time_sleep": 0, 70 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 71 | }, 72 | "aliyunpan": { 73 | "is_checkin": true, 74 | "push_message": true, 75 | "more_time_sleep": 0, 76 | "time_sleep": 0, 77 | "deviceRoom_task": false, 78 | "auto_delete_device": false, 79 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 80 | }, 81 | "wps_vip": { 82 | "is_checkin": true, 83 | "push_message": true, 84 | "more_time_sleep": 0, 85 | "time_sleep": 0, 86 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 87 | }, 88 | "hifini": { 89 | "is_checkin": true, 90 | "push_message": true, 91 | "more_time_sleep": 0, 92 | "time_sleep": 0, 93 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 94 | }, 95 | "wps_cloud": { 96 | "is_checkin": true, 97 | "push_message": true, 98 | "more_time_sleep": 0, 99 | "time_sleep": 0, 100 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 101 | }, 102 | "tieba": { 103 | "is_checkin": true, 104 | "push_message": true, 105 | "more_time_sleep": 0, 106 | "time_sleep": 0, 107 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 108 | }, 109 | "wuaipojie": { 110 | "is_checkin": true, 111 | "push_message": true, 112 | "more_time_sleep": 0, 113 | "time_sleep": 0, 114 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 115 | }, 116 | "jiaoyimao": { 117 | "is_checkin": true, 118 | "push_message": true, 119 | "more_time_sleep": 0, 120 | "time_sleep": 0, 121 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 122 | }, 123 | "piaoyunge": { 124 | "is_checkin": true, 125 | "push_message": true, 126 | "more_time_sleep": 0, 127 | "time_sleep": 0, 128 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 129 | } 130 | }, 131 | "push_message": { 132 | "is_push_message": true, 133 | "message_name": "checkin message", 134 | "pushPlus": "token", 135 | "server": "token" 136 | } 137 | } -------------------------------------------------------------------------------- /yaoys_checkin_config_解释说明.json: -------------------------------------------------------------------------------- 1 | { 2 | "common_config": { 3 | // 信息是否输出到控制台 4 | "is_print": true, 5 | // 是否是定时任务,如果是false,则启动时立即执行一次 6 | "is_scheduler": false, 7 | // 使用方式, 0:青龙面板,腾讯云函数等直接使用pip安装的方式,1:exe界面启动,2:使用Windows服务的形式 8 | "use_type": 0 9 | }, 10 | // 定时任务配置 11 | "scheduler": { 12 | // 每周几执行,默认’0-6‘,即每天执行 13 | "timing_day_of_week": "", 14 | // 几点执行,默认早上8点 15 | "timing_hour": "", 16 | // 几分执行,默认0分 17 | "timing_minute": "", 18 | // 执行一次后是否随机时间执行下次 19 | "random_scheduler_time": true, 20 | // 下次随机执行的小时范围 21 | "random_scheduler_time_hour": [ 22 | 7, 23 | 8, 24 | 9, 25 | 10 26 | ] 27 | }, 28 | // 签到网站的cookie或者用户名密码配置 29 | "cookieOrUser": { 30 | // 多个账号签到时将每个账号的cookie放在数组中,如下所示 31 | "able_sci": { 32 | // 是否执行签到 33 | "is_checkin": true, 34 | // 是否推送消息 35 | "push_message": true, 36 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 37 | "more_time_sleep": 0, 38 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,再比如贴吧签到每个吧签到时间间隔,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 39 | "time_sleep": 0, 40 | "checkin_verification": [ 41 | { 42 | "cookie": "多账号配置,将多个账号的cookie放入json数组中" 43 | }, 44 | { 45 | "cookie": "多账号配置,将多个账号的cookie放入json数组中" 46 | } 47 | ] 48 | }, 49 | "hifini": { 50 | "is_checkin": true, 51 | "push_message": true, 52 | "more_time_sleep": 0, 53 | "time_sleep": 0, 54 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 55 | }, 56 | // 单个账号直接填写cookie即可,不需要数组 57 | "bilibili_live": { 58 | // 是否执行签到 59 | "is_checkin": true, 60 | "push_message": true, 61 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 62 | "more_time_sleep": 0, 63 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 64 | "time_sleep": 0, 65 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 66 | }, 67 | "bilibili_icon": { 68 | // 是否执行签到 69 | "is_checkin": true, 70 | "push_message": true, 71 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 72 | "more_time_sleep": 0, 73 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 74 | "time_sleep": 0, 75 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 76 | }, 77 | "cloud189": { 78 | // 是否执行签到 79 | "is_checkin": true, 80 | "push_message": true, 81 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 82 | "more_time_sleep": 0, 83 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 84 | "time_sleep": 0, 85 | "checkin_verification": { 86 | "phone": "单账号配置,不需要写在json数组中,多账号参考上面", 87 | "password": "单账号配置,不需要写在json数组中,多账号参考上面" 88 | } 89 | }, 90 | // 以下为天翼云盘多账号配置 91 | // "checkin_verification": [ 92 | // { 93 | // "phone": "多账号1", 94 | // "password": "多账号1" 95 | // }, 96 | // { 97 | // "phone": "多账号2", 98 | // "password": "多账号2" 99 | // } 100 | // ], 101 | "glados": { 102 | // 是否执行签到 103 | "is_checkin": true, 104 | "push_message": true, 105 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 106 | "more_time_sleep": 0, 107 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 108 | "time_sleep": 0, 109 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 110 | }, 111 | "gu_fen_xue_shu": { 112 | // 是否执行签到 113 | "is_checkin": true, 114 | "push_message": true, 115 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 116 | "more_time_sleep": 0, 117 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 118 | "time_sleep": 0, 119 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 120 | }, 121 | "aliyunpan": { 122 | // 是否执行签到 123 | "is_checkin": true, 124 | "push_message": true, 125 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 126 | "more_time_sleep": 0, 127 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 128 | "time_sleep": 0, 129 | // 是否执行时光设备间任务 130 | "deviceRoom_task": false, 131 | // 时光设备间设备数量不足5个时自动创建虚拟设备后是否自动删除 132 | "auto_delete_device": false, 133 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 134 | }, 135 | "wps_vip": { 136 | "is_checkin": true, 137 | "push_message": true, 138 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 139 | "more_time_sleep": 0, 140 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 141 | "time_sleep": 0, 142 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 143 | }, 144 | "wps_cloud": { 145 | "is_checkin": true, 146 | "push_message": true, 147 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 148 | "more_time_sleep": 0, 149 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 150 | "time_sleep": 0, 151 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 152 | }, 153 | // 贴吧 154 | "tieba": { 155 | "is_checkin": true, 156 | "push_message": true, 157 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 158 | "more_time_sleep": 0, 159 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 160 | "time_sleep": 0, 161 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 162 | }, 163 | // 吾爱破解 164 | "wuaipojie": { 165 | "is_checkin": true, 166 | "push_message": true, 167 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 168 | "more_time_sleep": 0, 169 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 170 | "time_sleep": 0, 171 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 172 | }, 173 | // 交易猫配置 174 | "jiaoyimao": { 175 | "is_checkin": true, 176 | "push_message": true, 177 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 178 | "more_time_sleep": 0, 179 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 180 | "time_sleep": 0, 181 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 182 | }, 183 | // 飘云阁签到 184 | "piaoyunge": { 185 | "is_checkin": true, 186 | "push_message": true, 187 | // 一个平台包含多个账号时签到时间间隔,比如有该平台两个账号需要签到,那么一个账号签到完毕后间隔设置的时间在执行另一个,单位为秒 188 | "more_time_sleep": 0, 189 | // 当平台签到时需要发送多个请求时间隔,比如执行签到后需要获取账号的总积分,此时需要间隔多久才执行获取积分的请求,注意这个参数在一个平台发送多个请求都会调用,如果设置太大,请求太多时间会很久 190 | "time_sleep": 0, 191 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 192 | } 193 | }, 194 | // 消息推送平台token,支持pushplus,server酱 195 | "push_message": { 196 | // 是否推送消息 197 | "is_push_message": true, 198 | // 推送消息的名称 199 | "message_name": "checkin message", 200 | // pushPlus token 201 | "pushPlus": "", 202 | // server 酱token 203 | "server": "" 204 | } 205 | } -------------------------------------------------------------------------------- /使用说明.md: -------------------------------------------------------------------------------- 1 | # 下载 2 | 3 | 1. 下载已经打包好的文件,目前提供msi文件自行安装和绿色版直接解压使用 4 | 2. **强烈建议在Windows平台下使用nssm设置为系统服务,每天定时执行,方便快捷** 5 | 6 | # 配置文件 7 | 8 | 1. 配置**yaoys_checkin_config.json**配置文件 9 | 2. **青龙面板:**需要将配置文件放在**/ql/scripts/yaoys_checkin_config.json** 10 | 3. **Windows系统**:放在同级目录下/同级config目录下/上一级config目录下,目前支持这三种配置文件路径 11 | 4. 打开CMD命令行进入到该目录下,运行命令**AutoCheckIn.exe**,查看是否可以正常运行,**十分重要** 12 | 5. **每个平台使用的方式不同,有些是cookie,有些是账号密码,请详细查看本文档** 13 | 14 | # 配置文件说明 15 | 16 | 配置文件采用json格式文件,编写完配置文件后前往[JSON在线解析及格式化验证 - JSON.cn](https://www.json.cn/)验证文件格式是否正确 17 | 18 | ## yaoys_checkin_config.json解释(也可以查看仓库中的解释文件) 19 | 20 | ### 青龙面板安装使用 21 | 22 | 1. 下载安装青龙面板 23 | 2. pip install yaoys-checkin 安装最新版本 24 | 3. 将 yaoys_checkin_config.json配置文件放在 /ql/scripts/目录下 25 | 4. 设置定时执行的时间执行签到 26 | 5. 27 | # 各个平台cookie&refresh_token获取方式 28 | 29 | #### 1. glados签到教程 30 | 31 | ##### 1.1 添加 COOKIE 至 配置文件 config/yaoys_checkin_config.json->glados 32 | 33 | - 登陆[GLaDOS](https://glados.rocks/)后,F12打开开发者工具。 34 | - 刷新网页,并在浏览器中提取复制`Cookie`值,注意不要把`Cookie:`前缀加入进来!!!!! 35 | 36 |
37 |
38 |
89 |
90 |
101 |
102 |
8 |
9 |
21 |
22 |
28 |
29 |