The way I read the docs it seems that the default docs feed url for an oauth user is 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);
I am getting an invalid Invalid Request URI response from this feed url.