1

我阅读文档的方式似乎是 oauth 用户的默认文档提要网址是https://docs.google.com/feeds/default/private/full

https://developers.google.com/google-apps/documents-list/#getting_a_list_of_documents_and_files

OAuthRequest request = new OAuthRequest(
  Verb.GET, 
  "https://docs.google.com/feeds/default/private/full");
service.signRequest(accessToken, request);
Response response = request.send();
String bodyString = response.getBody();
JSONObject body = new JSONObject(bodyString);

我从这个提要 url 收到一个无效的无效请求 URI 响应。

4

1 回答 1

4

您必须添加查询参数?v=3或发送 HTTP 标头GData-Version: 3.0才能使用 Documents List API v3。

还建议使用较新的 Drive API,因为它可以完成 Documents List API 所做的所有事情,并且由一组新的客户端库支持。有关 Drive SDK 的更多详细信息,请查看https://developers.google.com/drive/

于 2012-08-30T22:30:57.370 回答