├── .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 |

39 | 40 | #### 2 天翼云盘签到教程 41 | 42 | ##### 2.1 添加 天翼云盘登录信息 至 配置文件 config/yaoys_checkin_config.json->cloud189 43 | 44 | - 在配置文件中写入登录用户名和密码 45 | 46 | #### 3 bilibili直播和硬币签到教程 47 | 48 | ##### 3.1 添加 bilibili直播和硬币cookie 至 配置文件 config/yaoys_checkin_config.json->bilibili_live,->bilibili_icon 49 | 50 | - 同方法1.1 51 | 52 | #### 4 科研通签到教程 53 | 54 | ##### 4.1 添加 科研通cookie 至 配置文件 config/yaoys_checkin_config.json->able_sci 55 | 56 | - 同方法1.1 57 | 58 | #### 5 谷粉学术签到教程 59 | 60 | ##### 5.1 添加 cookie 至 配置文件 config/yaoys_checkin_config.json->gu_fen_xue_shu 61 | 62 | - 同方法1.1 63 | 64 | #### 6 阿里云盘签到教程 65 | 66 | ##### 6.1 添加 refresh_token 至 配置文件 config/yaoys_checkin_config.json->aliyunpan 67 | 68 | ###### refresh_token获取方法: 69 | 70 | 1. 自动获取: 网站登录阿里云盘后,控制台粘贴 JSON.parse(localStorage.token).refresh_token 71 | 2. 手动获取: 网站登录阿里云盘后,可以在开发者工具 -> Application -> Local Storage 中的 token 字段中找到。 72 | 73 | #### 7 Wps 签到教程 74 | 75 | ##### 7.1 使用浏览器访问 https://zt.wps.cn/spa/2019/vip_mobile_sign_v2/?csource=pc_cloud_membercenter&position=pc_cloud_sign 登录,通过F12查看cookie,复制并填写进配置文件 wps_cloud中 76 | 77 | ##### 7.2 使用浏览器访问 https://vip.wps.cn/home 并登录,通过F12查找到自己的cookie,并放入到配置文件 wps_vip 78 | 79 | 80 | 81 | # 消息推送配置教程(可选) 82 | 83 | #### 添加 PUSHPLUS的token值 至 配置文件 84 | 85 | - 登陆[pushplus](http://www.pushplus.plus/) 86 | - 将token写入config文件中 87 | 88 |

89 | 90 |

91 | 92 | #### 如果使用[server酱](https://sct.ftqq.com/),请添加 SERVER_TOKEN 93 | 94 | - 将token写入config文件中 95 | 96 | ### 请注意,如果两个推送平台均配置,则会同时推送至两个平台,建议只配置一个就好 97 | 98 | ### 推送消息时,所有的签到只推送一条通知,如下所示 99 | 100 |

101 | 102 |

-------------------------------------------------------------------------------- /更新日志.md: -------------------------------------------------------------------------------- 1 | ## 更新日志 2 | - 2024-2-21 3 | 1. 定时任务可以设置随机时间了,主要是为了防止被风控,可以设置本次定时任务执行完毕后下次任务的执行时间, 4 | 目前只支持设置下次执行的小时范围,系统会随机在该范围中选择小时数执行,需要设备配置文件中random_scheduler_time=true,random_scheduler_time_hour=[] 5 | 2. 修复hifini音乐网站签到,如果连续签到可能会要求人机验证,此时就需要手动签到一次了,如果还是需要人机验证,可以尝试暂停两天,还是需要人机验证就没办法了 6 | 3. 修复阿里云盘时光设备间任务,时光设备间设备数量不足5个时会创建虚拟设备执行任务领取奖励,可以设置执行完毕后是否删除虚拟设备,"auto_delete_device": false,默认false, 7 | 由于需要创建虚拟设备等,时间可能比较长,不过设置为系统服务,没啥影响 8 | 9 | - 2023-12-29 10 | 1. 由于增加了人机验证,删除hifini网站签到 11 | 2. 阿里云盘新增可执行任务(开启手机自动备份并持续至少一小时&开启自动备份并备份10个文件),此任务需要手动开启手机或者电脑的自动备份,就可以领取该任务奖励 12 | 3. 版本v0.1.17 13 | 14 | - 2023-10-28 15 | 1. 新增HIFINI网站签到(https://www.hifini.com/),配置文件新增网站相关配置 16 | `"hifini": { 17 | "is_checkin": true, 18 | "push_message": true, 19 | "more_time_sleep": 0, 20 | "time_sleep": 0, 21 | "checkin_verification": "单账号配置,直接填写cookie即可,不需要写在json数组中,多账号参考上面" 22 | },` 23 | 2. 修复阿里云盘签到任务的一些问题 24 | 3. 更新版本号至v0.1.16 25 | - 2023-9-24 26 | 1. 阿里云盘增加分享好运口令(点击分享->今日好运卡)(支持) 27 | 2. 阿里云盘增加接好运瓶并转存任意1个文件(支持) 28 | - 2023-9-10 29 | 1. 实现阿里云盘时光设备间备份文件领取永久空间任务(限时任务),修改配置文件中的aliyunpan-》"deviceRoom_task": false 为true,默认为false 30 | 2. 阿里云盘创建快传时不再使用固定文件夹,使用随机文件 31 | 3. 版本号为:0.1.14 32 | - 2023-8-27 33 | 1. 阿里云盘签到时不再生成账号的配置文件,最大程度保护用户隐私 34 | - 2023-8-10 35 | 36 | ***重要更新,非常重要,全面支持阿里云盘新版本签到,全网唯一可以部署到本地的支持阿里云盘新版本签到的项目*** 37 | 1. Windows版本V0.1.11,青龙版本v0.1.13 38 | 2. 修复glados签到提示token错误 39 | 3. 优化wps签到,尝试解决WPS云空间签到需要验证码的问题,尝试绕过验证码,不一定有效,随缘 40 | 4. 完善交易猫签到,解决交易猫签到失败时不统计数目的问题 41 | 5. 其他优化 42 | 6. 新增天翼云盘做任务获取云空间 43 | 7. **取消WPS签到得会员,现在需要解密,没实现解密算法,如果有办法实现,请提供一个demo给我** 44 | 8. ***重要*** 配置文件中各个平台的配置文件新增了 ***more_time_sleep*** 和 **time_sleep** 45 |
两个参数,具体含义是: 46 |
more_time_sleep(**建议设置**):当一个平台有多个账号时,两个账号之间签到的时间间隔,单位为秒 47 |
time_sleep(**可以设置,但是不要太大,否则会很慢**):有时一个平台签到过程中涉及到多个请求,这个参数的作用是一个平台签到过程中多个请求之间的时间间隔单位为秒,比如一个平台签到后需要获取账户积分,又或者贴吧签到多个吧之间的签到间隔都是这个参数 48 | 9. ***重构阿里云盘签到,此次签到会在config文件夹中保存每个阿里云盘账号的个人信息json文件,目的是为了完成签到任务*** 49 | 10. ***支持阿里云盘新版本签到,详情看 [阿里云盘新版本签到说明](阿里云盘新版本签到说明.md)*** 50 | 51 | - 2023-7-27 52 | 1. 针对青龙面板安装做了优化,修改了python库名称便于安装 53 | 2. 优化其他代码 54 | 3. 版本更新至0.1.10 55 | - 2023-7-10 56 | 1. 新增飘云阁签到,吾爱破解签到 57 | 2. 新增版本检测功能 58 | - 2023-7-5 59 | 1. 新增交易猫签到(Cookie很容易失效,暂时还没想到怎么通过账号密码登录) 60 | - 2023-6-18 61 | 1. 新增百度贴吧签到,每个贴吧之间签到间隔为5秒,关注的贴吧越多,签到时间越久 62 | 2. 支持青龙面板部署 63 | 3. **(重要!!!!!!!!)为了区分其他的config文件,修改配置文件名称为yaoys_checkin_config.json** 64 | 4. 代码优化 65 | 5. 使用Windows服务形式可以正常签到 66 | 6. 发布版本0.1.8 67 | 68 | - 2023-6-8 69 | 70 | 1. 为了与其他配置文件区分,修改config.json文件名称为yaoys_checkin_config.json 71 | 2. 测试青龙面板签到 72 | 73 | - 2023-5-28 74 | 1. 新增WPS签到获取会员时长和云空间容量,由于WPS签到策略,有时会需要验证码,如果出现需要验证码的情况,就只能手动签到了,目前设置云空间和会员时长之间签到需要间隔一分钟,如果出现长时间等待,请耐心 75 | 2. 正在测试做成Windows服务的形式 76 | - 2023-5-21 77 | 1. 配置文件新增了是否是定时任务配置,如果是定时任务则按照定时任务每日执行,否则只执行一次 78 | 2. 新增签到任务可以设置为服务,可以设置服务启动时执行一次或者每日定时执行(通过设置 **"is_scheduler": true/false** 79 | 实现) 80 | 具体如何设置为Windows的服务,请参考本文档''如何设置为Winodws服务''下的内容,**目前只支持Windows** 81 | 3. 推送消息新增任务总数,成功数量,失败数量等信息 82 | 83 | - 2023-5-14 84 | 1. 修复glados平台多账号签到错误 85 | - 2023-5-13 86 | 1. 修复天翼云盘登陆失败的问题 87 | 2. 发布0.1.2版本 88 | 3. **签到不再依赖谷歌浏览器,无需谷歌浏览器也可以执行签到(重要)** 89 | 4. yaoys_checkin_config.json文件进行修改,请参考最新版配置文件 90 | 5. 解决[Issues.md](../说明文件/Issues.md)文件中0.1.2版本的需求&BUG 91 | - 2023-4-9 修复BUG 92 | - 2023-3-28 增加阿里云盘签到 -------------------------------------------------------------------------------- /版本需求&问题.md: -------------------------------------------------------------------------------- 1 | 版本:V0.1.11 2 | 3 | | 序号 | 类型 | 问题描述 | 重要性 | 进度 | 解决日期 | 备注 | 4 | |:----------------------------------------------------------:|-----------------------------------------------------------|:------------------------------------------------------------:|:------------------------------------------------------------:|:--------------------------------------------------------:|:------------------------------------------------------------:|:----------------------------------------------------------:| 5 | | ~~1~~ | ~~需求~~ | ~~多账号签到休眠时间可以在配置文件配置~~ | ~~重要且紧急~~ | ~~已解决~~ | | | 6 | | ~~2~~ | ~~需求~~ | ~~适配阿里云盘新版本签到~~ | ~~非常重要且紧急~~ | ~~已解决~~ | | | 7 | 8 | 版本:V0.1.3 9 | 10 | | 序号 | 类型 | 问题描述 | 重要性 | 进度 | 解决日期 | 备注 | 11 | |:----------------------------------------------------------:|-----------------------------------------------------------|:------------------------------------------------------------:|:------------------------------------------------------------:|:--------------------------------------------------------:|:------------------------------------------------------------:|:----------------------------------------------------------:| 12 | | ~~1~~ | ~~需求~~ | ~~可以将项目设置为服务并正常签到~~ | ~~重要且紧急~~ | ~~已解决~~ | 2023-6-18 | | 13 | | ~~2~~ | ~~需求~~ | ~~增加推送信息中总共几条任务,成功几条,失败几条~~ | ~~重要且紧急~~ | ~~已解决~~ | 2023-5-21 | | 14 | 15 | 版本:V0.1.2 16 | 17 | | 序号 | 类型 | 问题描述 | 重要性 | 进度 | 解决日期 | 备注 | 18 | |:----------------------------------------------------------:|-----------------------------------------------------------|:------------------------------------------------------------:|:------------------------------------------------------------:|:--------------------------------------------------------:|:------------------------------------------------------------:|:----------------------------------------------------------:| 19 | | ~~1~~ | ~~BUG~~ | ~~阿里云盘签到函数中log日志输出了checkin_message,导致日志文件出现很多记录~~ | ~~重要且紧急~~ | ~~已解决~~ | 2023-4-5 | | 20 | | ~~2~~ | ~~需求~~ | ~~重构AutoCheckIn函数,实现for循环自动调用每个平台签到~~ | ~~重要不紧急~~ | ~~已解决~~ | 2023-4-8 | | 21 | | ~~3~~ | ~~需求~~ | ~~Config.json增加配置,实现各个平台自己设置是否需要推送至微信通知,默认为推送~~ | ~~重要不紧急~~ | ~~已解决~~ | 2023-4-9 | | 22 | | ~~4~~ | ~~需求~~ | ~~推送消息格式优化~~ | ~~重要不紧急~~ | ~~已解决~~ | 2023-4-14 | | 23 | | ~~5~~ | ~~BUG~~ | ~~天翼云盘签到成功无法获取得到的容量~~ | ~~重要且紧急~~ | ~~已解决~~ | 2023-4-8 | | 24 | | ~~6~~ | ~~BUG~~ | ~~log日志输出无法记录开始时间~~ | ~~重要不紧急~~ | ~~已解决~~ | 2023-4-5 | | 25 | | ~~7~~ | ~~BUG~~ | ~~阿里云盘签到成功后无奖励信息,原因是状态判断出错,要判断miss状态才是未签到的,注意最后一天的时候逻辑判断~~ | ~~重要且紧急~~ | ~~已解决~~ | 2023-4-5 | | 26 | | ~~8~~ | ~~需求~~ | ~~用户自定义推送到微信的消息名称~~ | ~~重要不紧急~~ | ~~已解决~~ | 2023-4-9 | | 27 | | ~~9~~ | ~~需求~~ | ~~阿里云盘签到优化,查看相关链接~~ | ~~重要不紧急~~ | ~~已解决~~ | 2023-4-22 | | 28 | | ~~10~~ | ~~需求~~ | ~~签到平台增加重试机制,出现错误用户自定义重试次数和是否出错重试~~ | ~~重要不紧急~~ | ~~已解决~~ | 2023-4-16 | | 29 | | ~~11~~ | ~~需求~~ | ~~用户自定义chrome浏览器的安装地址~~ | ~~重要不紧急~~ | ~~已解决~~ | 2023-4-16 | | 30 | | ~~12~~ | ~~需求~~ | ~~增加版本号,检测有最新版本时推送到微信提示用户更新~~ | ~~重要不紧急~~ | ~~已解决~~ | | | 31 | | ~~13~~ | ~~需求~~ | ~~签到函数优化,实现直接在init方法调用~~ | ~~重要不紧急~~ | ~~已解决~~ | 2023-4-14 | | 32 | | ~~14~~ | ~~需求~~ | ~~每次签到重新读取文件,实现修改配置文件不重启~~ | ~~重要不紧急~~ | ~~已解决~~ | 2023-5-4 | | 33 | | ~~15~~ | ~~需求~~ | ~~需要调用浏览器签到的项目尝试不使用浏览器进行签到~~ | ~~重要且紧急~~ | ~~已解决~~ | 2023-5-13 | | 34 | 35 | -------------------------------------------------------------------------------- /阿里云盘新版本签到说明.md: -------------------------------------------------------------------------------- 1 | 目前支持的任务包括: 2 | 3 | 1. 备份10个文件到备份盘(已支持) 4 | 2. 备份10张照片到相册(已支持) 5 | 3. 订阅阿里盘盘酱(已支持) 6 | 4. 创建手工相册(已支持) 7 | 5. 接3次好运瓶即可领取奖励(已支持) 8 | 6. 播放视频30秒(已支持) 9 | 7. 使用快传传输一个文档(已支持) 10 | 8. 时光设备间领取永久空间任务(限时任务) 11 | 9. 分享好运口令(点击分享->今日好运卡)(支持) 12 | 10. 接好运瓶并转存任意1个文件(支持) 13 | 14 | 暂时不支持的任务: 15 | 1. 创建共享相簿邀请成员加入并上传10张照片(无法支持,需要操作多个账号) 16 | 2. 备份一个新的设备(无法支持) 17 | 3. 开启自动备份并备份10个文件 18 | 4. 开启手机自动备份并持续至少一小时 19 | 20 | ## 说明 21 | 22 | ### 关于配置文件 yaoys_aliyunpan_daily_task.json 23 | 24 | 1. 此配置文件位于config目录下 25 | 2. 配置文件的作用是统计阿里云盘签到任务,用户可以自己修改配置文件中的 ***remind*** 和***name***两个字段 26 | 3. ***remind***字段用于和阿里云盘签到任务匹配,如果后面阿里云盘修改了任务描述,用户可自行修改,就不需要改代码了(必须和阿里云盘签到任务描述一致才可以匹配) 27 | 4. ***type***字段禁止修改,此字段是为了和阿里云盘返回的数据进行匹配 28 | 29 | ### 关于自动执行签到任务创建的文件夹和相册 30 | 1. 上传文件任务会自动创建文件夹,名为:***阿里云盘签到任务文件夹***,此文件夹处于**备份盘**,你也可以自己创建文件夹,名称与要求保持一致即可 31 | 2. 上传照片时会自动创建相册,名为:***阿里云盘签到任务相册***,由于每次上传图片时会将上次上传的图片删除,所以此文件夹不要放自己的图片 32 | 3. 创建一个手工相册任务时,会自动创建一个相册,名称为 ***阿里云盘签到任务创建相册***,每次执行该任务时会先将上次创建的相册删除 33 | 4. **无论是上传图片或者上传文件任务,当天上传成功后不会马上删除,等下次执行时会删除** 34 | ### 任务描述 35 | 36 | #### 备份文件任务 37 | 38 | 1. 完成此任务时首先会在与config同级目录下创建一个目录,名为:***aliyunpan_daily_task*** 39 | 2. 阿里云盘中会创建一个文件夹名为: ***阿里云盘签到任务文件夹***,**此文件夹不可修改名称,主要用于备份文件** 40 | 3. 完成备份文件的任务时,首先会在 ***aliyunpan_daily_task*** 文件夹生成10个文件,然后上传到阿里云盘中的***阿里云盘签到任务文件夹***,全部完成后会删除生成的本地文件 41 | 4. 所有的完成后领取任务奖励 42 | 5. ***此文件夹不要放自己的文件,每次执行会删除文件夹中上次上传的TXT文件,但是不会删除视频文件!!!!!*** 43 | 44 | #### 创建相册任务 45 | 1. 删除上次创建的相册 46 | 2. 在阿里云盘创建一个相册,名为 ***阿里云盘签到任务创建相册*** 47 | 3. 领取奖励 48 | 49 | #### 备份照片任务 50 | 51 | 1. 和备份文件同理,在 ***aliyunpan_daily_task***目录生成本地图片 52 | 2. 阿里云盘相册创建相册名为 ***阿里云盘签到任务相册***,*此相册不可修改名字,可以删除,但是下次执行该任务时还会创建* 53 | 3. 上传本地生成的图片到相册 54 | 4. 删除本地图片文件 55 | 5. 领取奖励 56 | 6. ***此相册不要放自己的文件,每次执行会删除相册中的所有文件!!!!!*** 57 | 58 | #### 播放视频任务 59 | 60 | 1. **自己上传多个35秒左右的视频**到 ***阿里云盘签到任务文件夹*** 文件夹,如果视频时长超过35秒,则只播放35秒,低于35秒的视频会全部播放 61 | 2. 视频文件格式为 ["avi", "flv", "mp4", "MOV"] 格式其中之一 62 | 3. 视频播放任务很神奇,同一个视频如果反复使用或者多个账号反复使用会导致签到无效,被阿里云盘认为没有完成规定的任务 63 | 4. **需要上传*多个*视频,系统会随机选择视频进行播放** 64 | 5. 最好是隔一段时间就更新一下视频 65 | 6. **请求播放视频后,必须要间隔最多35秒才能领取奖励** 66 | 67 | #### 快传功能任务 68 | 69 | 1. 此功能默认分享的是文件夹即为:***阿里云盘签到任务文件夹*** 文件夹 70 | 2. 如果该文件夹不存在则创建文件夹 71 | 72 | #### 时光设备间领取永久空间任务(限时任务) 73 | 74 | 1. 首先需要账号在五个不同的设备上登陆过才可以领取5次,因为每个设备只能领取一次 75 | 2. 修改配置文件中的’deviceRoom_task‘ 为’true‘ -------------------------------------------------------------------------------- /青龙面板配置使用.md: -------------------------------------------------------------------------------- 1 | ### 青龙面板安装使用 2 | 3 | 1. 下载安装青龙面板 4 | 2. 安装最新版本的库,如图所示
5 | 执行时间自己设置,如果使用青龙面板的形式,需要将配置文件中的 is_scheduler 设置为false, use_type 设置为0
6 | python 库名称: **autodailycheckin**
7 |

8 | 9 |

10 | 3. 将 **yaoys_checkin_config.json** 和 **[yaoys_aliyunpan_daily_task.json](yaoys_aliyunpan_daily_task.json)** 配置文件放在 11 | "/ql/data/scripts/config/", 12 | "/ql/data/config/", 13 | "/ql/data/", 14 | "/ql/scripts/", 15 | "/ql/scripts/config/" 16 | 目录均可 17 | 4. 设置定时执行的时间执行签到,使用命令如图所示:
18 | 签到命令: **task autodailycheckin** 19 | 20 |

21 | 22 |

23 | 24 | 5. 设置定时更新python库,如图所示:
25 | 更新库命令:**task pip3 install autodailycheckin --upgrade** 26 | 27 |

28 | 29 |

30 | 31 | ### 日志文件 32 | 33 | 目录默认为: '/ql/data/checkin_log' --------------------------------------------------------------------------------