我阅读文档的方式似乎是 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 响应。