1
我讀它似乎默認文檔供稿網址爲一個OAuth用戶的文檔的方式是https://docs.google.com/feeds/default/private/full默認文檔提要URL返回無效請求URI
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);
我得到一個無效的無效請求來自此供稿網址的URI響應。
上帝之母!我愛你,這爲我節省了時間! –