2

我正在为我的 Rails 应用程序使用 google-api-client (0.3.0) gem 来通过 Google Drive API v2 访问用户的数据。

我成功地按标题搜索了一个文件,然后尝试使用搜索结果中的文件 ID 插入新权限。我想以编程方式允许“任何知道链接的人”对文件发表评论。

按照此处的示例代码: https ://developers.google.com/drive/v2/reference/permissions/insert ,我编写了以下代码:

new_permission = gDriveApi.permissions.insert.request_schema.new({ 
                         'role' => "reader",
                         'type' => "anyone",
                         'value' => "",
                         'additionalRoles' => ["commenter"], 
                         'withLink' => true })

result = client.execute(:api_method => gDriveApi.permissions.insert,
                        :body_object => new_permission,
                        :parameters => { 'fileId' => file_id })

我收到 400 错误。这是哈希转储:

--- !ruby/object:Google::APIClient::Schema::Drive::V2::Permission 
data: 
  error: 
    errors: 
    - domain: global reason: parseError 
      message: This API does not support parsing form-encoded input.
    code: 400 
    message: This API does not support parsing form-encoded input.

根据gem源代码中的errors.rb,4xx错误是客户端错误。

任何修复此错误的帮助将不胜感激。

4

1 回答 1

2

该版本的客户端库中可能存在问题,并且在 0.3 和 0.4 之间发生了重大变化。我在当前版本 0.4.4 上运行了相同的代码段,它运行良好。如果可能,建议更新您的依赖项。

于 2012-07-26T21:08:31.257 回答