2012-08-30 47 views
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響應。

回答

4

您必須添加查詢參數?v=3或發送HTTP標頭GData-Version: 3.0才能使用Documents List API v3。

還建議使用更新的Drive API,因爲它執行Documents List API的所有操作,並且由一組新的客戶端庫支持。有關Drive SDK的更多詳細信息,請選擇https://developers.google.com/drive/

+0

上帝之母!我愛你,這爲我節省了時間! –