使用服务帐户下载谷歌驱动器对象的链接

时间:2017-08-28 13:54:57

标签: ruby-on-rails ruby google-drive-api service-accounts

我正在建立一个使用谷歌驱动器和服务帐户的API。

Google云端硬盘对象附带@web_view_link属性,如下所示:

"https://drive.google.com/file/d/0B9eyEerjltIgZ2dyUTB1eGNjYUk/view?usp=drivesdk"

当我使用个人帐户在浏览器中访问此@web_view_link时,该链接正常运行,可以从该处下载该对象。

当我使用服务帐户@web_view_link粘贴到浏览器中时,Google云端硬盘会抱怨权限,即使我是通过帐户所有者访问,也无法访问权限。

是否可以使用服务帐户从Google云端硬盘访问下载链接?

我使用google-drive-ruby gem,这是检索@web_view_link网址的代码:

def create_url
  folder_name = Discourse.current_hostname
  found = google_files.select { |f| f.id == id }
  file_title = found.first.title
  file_url = session.collection_by_title(folder_name).file_by_title(file_title).human_url
end

1 个答案:

答案 0 :(得分:1)

服务帐户不是您的个人帐户。服务帐户belong to your application。确保在生成服务帐户并将角色设置为所有者或编辑者时启用了Drive API。

来自SO post的此代码段也可能有助于在ruby中使用服务帐户下载:

    require 'googleauth'
    require 'google/apis/drive_v2'

    Drive = Google::Apis::DriveV2

    upload_source = "/User/my_user_name/hacking.txt"
    drive = Drive::DriveService.new
    # Drive::AUTH_DRIVE is equal to https://www.googleapis.com/auth/drive
    drive.authorization = Google::Auth.get_application_default([Drive::AUTH_DRIVE])
    file = drive.insert_file({title: 'hacking.txt'}, upload_source: upload_source)
    drive.get_file(file.id, download_dest: '/tmp/my_file.txt')