
正文开始阅读,请点击右上角“关注”按钮,关注我们
简述
本文不需要代码知识,按照文章步骤即可轻松完成,适合零基础使用者。
文章中的代码已放入github仓库中,更多及最新代码将会在仓库中更新
https://github.com/imoki
“金山文档”中AirScript能够执行用户编写的js代码,并且可以设置定时执行。因此通过编写指定代码,并加入自动到定时任务中,即可无成本自动执行所需脚本。
准备工作
![图片[1]-零成本,无服务器,纯小白实现阿里云盘自动签到(极简版)](https://ram.1457vip.com/yfkj6/2023/07/ac842-5a1a6-c4759-20230717025240804.png!/format/webp/lossless/true)
需要阿里云盘的refresh_token。按照如图步骤复制refresh_token的值,如:xxxxxxxx。此值后面代码中需要用到。
文字步骤如下:
1.第一步,浏览器访问网页版阿里云盘,网址为
https://www.aliyundrive.com/drive
按键盘的F12,会唤起下方的开发者工具
2.第二步,点击开发者工具中的"Application"(中文名叫"应用")
3.第三步,点击"Local Storage"下的阿里云盘网址
4.第四步,右侧找到"token"并点击
5.第五步,下方找到"refresh token",并复制它后面双引号的内容,如:xxxxxxxx
实际操作
![图片[2]-零成本,无服务器,纯小白实现阿里云盘自动签到(极简版)](https://ram.1457vip.com/yfkj6/2023/07/2b271-830f5-8367a-20230717104915585.png!/format/webp/lossless/true)
![图片[3]-零成本,无服务器,纯小白实现阿里云盘自动签到(极简版)](https://ram.1457vip.com/yfkj6/2023/07/74a70-bf2f2-9f4d1-20230717104916715.png!/format/webp/lossless/true)
如图所示创建表格。
1.浏览器访问金山文档网址,并点击新建
https://www.kdocs.cn/latest?from=docs
2.点击“表格”
3.点击“空白表格”
4.依次点击“效率”-“高级开发”-“AirScript脚本编辑器”
5.依次点击“创建脚本”-“文档共享脚本”
6.按图所示,点击“服务”-“添加服务”,再点击“网络API”对应的“添加”按钮
// 将如下的xxxxxxxx替换成自己的refresh_token值
var refresh_token = "xxxxxxxx"
if(refresh_token != ""){
let res = HTTP.post("https://auth.aliyundrive.com/v2/account/token",
JSON.stringify({
"grant_type": "refresh_token",
"refresh_token":refresh_token
})
)
res = res.json()
var access_token = res['access_token']
if(access_token == undefined){
console.log("refresh_token错误,请重新填写refresh_token")
}else{
try{
let res2 = HTTP.post("https://member.aliyundrive.com/v1/activity/sign_in_list",
JSON.stringify({"_rx-s": "mobile"}),
{headers:{"Authorization":'Bearer '+access_token}}
)
res2=res2.json()
var signInCount = res2['result']['signInCount']
console.log("账号:" + res["user_name"] + "-签到成功, 本月累计签到" + signInCount + "天")
}catch{
console.log("refresh_token签到失败")
}
sleep(1000)
// 领取奖励
try{
let res3 = HTTP.post("https://member.aliyundrive.com/v1/activity/sign_in_reward?_rx-s=mobile",
JSON.stringify({
"signInDay": signInCount
}),
{headers:{"Authorization":'Bearer '+access_token}}
)
res3=res3.json()
console.log("签到获得" + res3["result"]["name"] + "," + res3["result"]["description"])
}catch{
console.log("领取奖励失败")
}
}
}
function sleep(d){
for(var t = Date.now(); Date.now() - t <= d; );
}
![图片[8]-零成本,无服务器,纯小白实现阿里云盘自动签到(极简版)](https://ram.1457vip.com/yfkj6/2023/07/dceff-e8c34-6331a-20230717104923763.png!/format/webp/lossless/true)
![图片[9]-零成本,无服务器,纯小白实现阿里云盘自动签到(极简版)](https://ram.1457vip.com/yfkj6/2023/07/b8d62-5d01a-2fa77-20230717104925480.png!/format/webp/lossless/true)
![图片[10]-零成本,无服务器,纯小白实现阿里云盘自动签到(极简版)](https://ram.1457vip.com/yfkj6/2023/07/74e0a-b37b4-586a5-20230717104926971.png!/format/webp/lossless/true)
感谢您的来访,获取更多精彩文章请收藏本站。


Use this card to join the YingFan's Space and participate in a pleasant discussion together .
Welcome to YingFan's Space,wish you a nice day .
暂无评论内容