使用Google客户端Api如何查询不在垃圾箱中的电子表格?

时间:2013-05-30 19:08:37

标签: ruby google-drive-api google-api-client

我将mimeType和trashed传递到客户端以执行的所有尝试都是失败或返回我的所有文档,无论mimeType和垃圾状态如何。

require 'google/api_client'
require 'launchy'
load 'auth.rb'

def client
  @client
end

def drive
  @drive
end

def session
  unless client
    @client = Google::APIClient.new
    @drive = client.discovered_api('drive', 'v2')
    client.authorization.client_id = client_id
    client.authorization.client_secret = secret
    client.authorization.scope = 'https://www.googleapis.com/auth/drive'
    client.authorization.redirect_uri = 'urn:ietf:wg:oauth:2.0:oob'

    uri = client.authorization.authorization_uri
    Launchy.open(uri)
    $stdout.write  "Enter authorization code: "
    client.authorization.code = gets.chomp
    client.authorization.fetch_access_token!
  end
  client
end

#application/vnd.google-apps.spreadsheet
def list_files
  session
  files = []
  #no matter how i go about trying to filter i always get all my docs...
  params = "'mimeType' = 'application/vnd.google-apps.spreadsheet' and 'trashed' = false"
  params = {'query' => {'mimeType' => 'application/vnd.google-apps.spreadsheet', 'trashed' => false}}
  params = {'q' => {'mimeType' => 'application/vnd.google-apps.spreadsheet', 'trashed' => false}}
  params = {'q' => "'mimeType' = 'application/vnd.google-apps.spreadsheet' and 'trashed' = false"}
  params = {'mimeType' => 'application/vnd.google-apps.spreadsheet', 'trashed' => false}
  begin
    rsp = client.execute :api_method => drive.files.list, :parameters => params
    #rsp = client.execute :api_method => drive.files.list, :q => params  # have tried comin
    files += rsp.data.items
    puts "Token was #{params['pageToken']} but now #{rsp.next_page_token}"
    params['pageToken'] = rsp.next_page_token unless rsp.next_page_token.nil?
  end while !rsp.next_page_token.nil?
  files
end

另外,我如何使用谷歌驱动器结果来获取使用电子表格API所需的电子表格密钥?从查询返回的文件资源没有任何电子表格密钥信息。

1 个答案:

答案 0 :(得分:4)

你可以尝试一下吗?

params = {'q' => "trashed=false and mimeType='application/vnd.google-apps.spreadsheet'"}

实际上,如果您使用错误的语法发送查询,它将返回400 Bad Request,而不是所有文件的200 Success。可能是你实际上没有传递任何东西。