Google 驱动器 API 没有列出我的驱动器 (Ruby) 中的文件

Google Drive API doesn't list file from my drive (Ruby)

我正在开发一个 Ruby 程序来访问我的 google 驱动器以获取我的文件。 我想使用服务器到服务器的连接来避免人们接受权限,所以我使用为 服务帐户客户端 ID 生成的 p12 密钥。 连接正常,但我成功插入了一个文件。

我的问题是当我尝试列出我的所有文件时:调用工作正常但我只得到 2 个文件:先前插入的文档和一个名为 "How to get started with Drive"[=29 的 pdf =](我还有很多其他文件,例如文档、电子表格、演示文稿、图片等...)。

我使用 google 帐户创建了我的密钥,但我无法访问我的文件。另外,我用我的程序插入的文档没有出现在我的文件中的 google 驱动器中。

关于 API 我是否遗漏了什么?我得到的是什么文件而不是我的文件? 这真的就像我不在同一个 Google Drive 帐户上一样。 这是我用来列出文件的代码:

# Prepare the OAuth client / Service Account 
client = Google::APIClient.new(application_name: 'Google Drive Ruby test', application_version: '0.0.1')
key = Google::APIClient::KeyUtils.load_from_pkcs12('key.p12', 'notasecret')
client.authorization = Signet::OAuth2::Client.new(
    :token_credential_uri => 'https://accounts.google.com/o/oauth2/token',
    :audience => 'https://accounts.google.com/o/oauth2/token',
    :scope => 'https://www.googleapis.com/auth/drive',
    :issuer => '***@developer.gserviceaccount.com',
    :signing_key => key)

client.authorization.fetch_access_token!

# Get the Drive API
drive = client.discovered_api('drive', 'v2')

# Upload a file 
api_result = client.execute(
    :api_method => drive.files.list,
    :parameters => [])

非常感谢!

朱利安

啊啊,问题来了。服务帐户不是您将通过浏览器更新的云端硬盘帐户。参见 and How do I authorise an app (web or installed) without user intervention? (canonical ?)。顺便说一句,在你的代码中 files.list 上面的评论说 "Upload a file" 这就是我第一次错过它的原因:-)