31

我正在寻找一个服务器应用程序来将文件上传到 Google Drive。我以前使用的是 Documents List API,但我发现它已被弃用。我想迁移到 Google Drive API,但这似乎非常受限于使用 web/OAuth 流。

我需要做的就是将 Word、Excel 文件等上传到 Google Drive,但我需要以完全自动化的方式完成此操作,无需任何类型的用户界面。我希望编写一个命令行应用程序,它可以在 cron 或其他任何东西上运行,并且不需要通过网络等进行人工干预。

我宁愿离开 Documents List API,因为我不想在他们最终关闭它时被烧毁,我想使用谷歌不会很快摆脱的受支持的 API。这存在吗?

4

4 回答 4

9

您的应用程序需要用户的许可才能对他的文件使用 API。该授权需要使用基于 Web 的 Oauth 进行。该授权的结果是您的服务器应用程序最终会获得一个可以存储的刷新令牌。您的应用可以随时将该刷新令牌转换为访问令牌并访问驱动器文件。

因此,只要您接受需要进行一次性授权,您就可以实现您想要的。

于 2012-09-16T16:58:10.143 回答
6

以下是使用GitHub 的 Windows、Linux 和 MacOS 的说明 | 驱动器

$ gdrive list
Go to the url... enter the oauth verification code... OK
$ gdrive upload file
$ gdrive mkdir UploadDir
ID_of_UploadDir
$ gdrive sync upload LocalDir ID_of_UploadDir
于 2016-07-21T22:07:19.107 回答
4

gdrive解决方案目前不起作用(登录问题)。所以你现在可以使用rclone. 你可以安装它

conda install -c conda-forge rclone

然后按照配置文档https://rclone.org/drive/
配置后,您将能够使用此命令复制到谷歌驱动器(统计标志用于进度条)

rclone copy <filename> remote: --stats-one-line -P --stats 2s

rclone 包含许多后端,因此您不仅可以上传到谷歌驱动器

于 2020-04-05T09:06:57.317 回答
1

由于gdrive 工具不再维护。我找到了一个官方和更好的方法。

使用卷曲。

  1. 安装卷曲

sudo apt install curl

  1. 在google 控制台上创建您的项目凭据。如果您没有帐户,请先注册一个帐户。

创建凭据 > 配置 OAth 同意屏幕(如果需要)> 应用程序类型 > 电视和受限输入设备 > 保存您的客户端 ID 和客户端密码。

  1. 验证设备

curl -d "client_id=<client_id>&scope=https://www.googleapis.com/auth/drive.file" https://oauth2.googleapis.com/device/code

预期响应:

{"device_code": "<long string>",
"user_code": "xxx-xxx-xxx",
"expires_in": 1800,
"interval": 5,
"verification_url": "https://www.google.com/device"}

然后进入https://www.google.com/device-->回车"user_code"-->赋予相关权限。

  1. 保存"device_code""user_code"值。
  2. 获取承载码

curl -d client_id=<client id> -d client_secret=<client secret> -d device_code=<device code> -d grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Adevice_code https://accounts.google.com/o/oauth2/token

预期输出:

{
"access_token": ".....",
"expires_in": 3599,
"refresh_token": "....",
"scope": "https://www.googleapis.com/auth/drive.file",
"token_type": "Bearer"
}
  1. 保存"access_token"值。

  2. 开始上传

curl -X POST -L -H "Authorization: Bearer <enter access_token here>" -F "metadata={name :'filename.zip'};type=application/json;charset=UTF-8" -F "file=@filename.zip;type=application/zip" "https://www.googleapis.com/upload/drive/v3/files?uploadType=multipart"

警告

在上传之前制作文件的 zip 存档。上面的代码适用于存档文件。我用上述方法成功上传了 10gb 的存档。

来源

于 2020-10-08T13:52:25.900 回答