本文发布于568天前,最后更新于127天前,其中的信息可能有所发展或是发生改变。如有疑问请联系邮箱:admin@yemengstar.com。
API文档:获取用户产品汇总数据和使用情况 – 雨云主站 (apifox.com)
实现代码
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": "每日签到"
}'
每日自动签到
#(如果没开启的话)开启服务
service cron restart
# 修改crontab配置。第一次输入该命令时,会提示选择编辑器,选择自己习惯使用的编辑器即可
crontab -e
填入以下内容
@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": "每日签到"}'
可以使用以下代码查看是否启动
crontab -l
如果显示
@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": "每日签到"}'
就说明启动成功了