-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
账号密码登录报错 #35
Comments
阿里云盘改了ua生成规则,登录api暂时不能用 |
账号密码登录接口啥时候能修好?或者有办法修吗? |
没办法除非能破解ua参数,或者用selenium来模拟登录 |
用账号密码的,多半是因为怕token过期。 |
大佬,能给个脚本吗,谢谢 |
首次获取refresh_token 我有在线获取工具,他的原理是通过阿里盘扫码登录页面获取二维码,手机app扫描二维码解析得到refresh_token 信息。 当然我是需要声明一下的,通过这个在线工具获取的 token 是安全的,服务器不会查看或保存你的token信息,这只是提供一个获取token的渠道,获取token的方法千万种,比如浏览器开发人员、安卓客户端日志等。。如果认为我提供的这个方式会导致你的账号不安全,不用它即可,以免给你我造成不必要的尴尬!!! 工具地址:https://easy-token.cooluc.com/ 当你完成首次获取token 后,你可以通过 /opt/update_token.sh #!/bin/bash
new_token=$(aliyunpan-cli token --refresh)
echo "refresh_token: '$new_token'" > ~/.config/aliyunpan.yaml
crontab 定时任务(每隔2小时自动执行一次刷新脚本) 0 */2 * * * bash /opt/update_token.sh 完成后,你可以随时随地使用 PS:作者这个阿里云cli 管理的项目是真好用!!!给大佬点赞👍 @wxy1343 不过我依然是非常期待官方可提供在centos7 系统上直接运行的 prebuilt 版本,这样就不需要自己build 了。毕竟比起 pip3 install ,二进制单文件它更便于灵活使用。 |
@PKC278 具体如下:
这样就可以做到token失效时,同步到到其它机器上相对方便点。但是还是需要人工操作 或者可以选择尝试下 sbwml 的方案 |
The text was updated successfully, but these errors were encountered: