0

我正在关注新的 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()

我们之前在我们的 google app engine for java app 中使用 Documents API 来做同样的事情。但看起来谷歌打破了它,因为我们的代码突然停止工作。

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

4

1 回答 1

0

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

于 2013-06-12T04:58:45.910 回答