美文网首页
Linux server使用curl 取Google Drive

Linux server使用curl 取Google Drive

作者: tolushe | 来源:发表于2018-09-01 17:25 被阅读0次

    2018-9-1 测试可用
    Stackoverflow 上面的方法大多数没有用,或者说之前有用,现在失效。

    第一步:
    curl -c /tmp/cookies "https://drive.google.com/uc?export=download&id=1QKV×××××××QMEsfoi6KpqoPgc4O6DD" > /tmp/tolushe.html
    id后面是你的文件id。

    第二步:
    curl -L -b /tmp/cookies "https://drive.google.com$(cat /tmp/tolushe.html | grep -Po 'uc-download-link" [^>]* href="\K[^"]*' | sed 's/\&/\&/g')" > YOURTARGETFILENAME

    相关文章

      网友评论

          本文标题:Linux server使用curl 取Google Drive

          本文链接:https://www.haomeiwen.com/subject/bnyuwftx.html