我正在为我的 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错误是客户端错误。
任何修复此错误的帮助将不胜感激。