我正在关注新的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文本文档?