使用雨云API实现每日自动签到

2024-08-20 17:13:25 浏览数 (1)

本文发布于437天前,最后更新于437天前,其中的信息可能有所发展或是发生改变。

API文档:获取用户产品汇总数据和使用情况 – 雨云主站 (apifox.com)

实现代码

代码语言:javascript复制
curl --location --request POST 'https://api.v2.rainyun.com/user/reward/tasks' 
--header 'x-api-key':'你的API' 
--header 'User-Agent: Apifox/1.0.0 (https://apifox.com)' 
--header 'Content-Type: application/json' 
--data-raw '{
    "task_name": "每日签到"
}'

每日自动签到

代码语言:javascript复制
#(如果没开启的话)开启服务
service cron restart
# 修改crontab配置。第一次输入该命令时,会提示选择编辑器,选择自己习惯使用的编辑器即可
crontab -e

填入以下内容

代码语言:javascript复制
@daily curl --location --request POST 'https://api.v2.rainyun.com/user/reward/tasks' --header 'x-api-key':'你的API' --header 'User-Agent: Apifox/1.0.0 (https://apifox.com)' --header 'Content-Type: application/json' --data-raw '{"task_name": "每日签到"}'

可以使用以下代码查看是否启动

代码语言:javascript复制
crontab -l

如果显示

代码语言:javascript复制
@daily curl --location --request POST 'https://api.v2.rainyun.com/user/reward/tasks' --header 'x-api-key':'你的API' --header 'User-Agent: Apifox/1.0.0 (https://apifox.com)' --header 'Content-Type: application/json' --data-raw '{"task_name": "每日签到"}'

就说明启动成功了

0 人点赞