使用google drive api读取文件列表的问题

时间:2013-06-07 05:18:41

标签: google-app-engine google-api google-drive-api

我正在关注新的google drive api,要求在https://developers.google.com/drive/quickstart-java

搜索带有标题的特定文档

但是,代码似乎在行中显示了用户交互的要求:

 String url = flow.newAuthorizationUrl().setRedirectUri(REDIRECT_URI).build();
    System.out.println("Please open the following URL in your browser then type the authorization code:");
    System.out.println("  " + url);
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    String code = br.readLine()

我们之前使用Documents API在我们的谷歌应用程序的谷歌应用程序引擎中做同样的事情。但看起来谷歌打破了它,因为我们的代码突然停止工作。

那么,如何使用google drive api搜索和阅读Google文本文档?

1 个答案:

答案 0 :(得分:0)

服务器端实现似乎是https://developers.google.com/drive/auth/web-server

的方法