如何使用wget从Onedrive下载文件?(以及批处理文件和整个文件夹,如果可能的话)
发布于 2017-07-14 18:02:18
使用Chrome (但Firefox可能也能工作)。
wget --post-data='<raw form data>' '<Download URL>'
或者:
wget --post-data='resIds=xxx&canary=yyy&authkey=zzz' 'https://cid--foobar.users.storage.live.com/downloadfiles/V1/Zip?authKey=zzz'
这甚至适用于不同的主机(具有不同的IP地址)。
发布于 2019-11-15 04:40:09
生成一个共享链接,并将"&download=1“追加到它的末尾。
如果链接是"https://some.host/:z:/x/personal/some_用户/123456asdf?e=12345“
然后
wget "https://some.host/:z:/x/personal/some_user/123456asdf?e=12345&download=1"
发布于 2019-01-03 17:06:33
另外,我们也可以使用CurlWget --我已经在OneDrive和Google上试用过了
https://unix.stackexchange.com/questions/223734
复制相似问题