我設法從Android上的AccountManager獲得一個「寫作」(Google文檔)的驗證令牌。 現在我想從用戶那裏獲取所有文檔 - 但我絕對不知道如何做到這一點。 這裏有很多庫,包括Google-Api-Java-Client,但我不知道如何使用它們。 Picasa的示例應用程序也dosent幫我... :( 任何人,任何想法?檢索Google文檔列表
1
A
回答
0
文檔列表API V3是您可以使用的 - 有關使用它的詳細信息以及如何處理OAuth令牌等看看here
DocsService service = new DocsService("test-docs-service");
service.setOAuthCredentials(oauthParameters, new OAuthHmacSha1Signer());
try {
DocumentListFeed feed = service.getFeed(new URL("https://docs.google.com/feeds/default/private/full"), DocumentListFeed.class);
if(null != feed || feed.getEntries().size() > 0){
System.out.println("feed size = " +feed.getEntries().size());
for(DocumentListEntry entry : feed.getEntries())
{
System.out.println("filename = "+entry.getTitle().getPlainText());
}
}
else{
System.out.println("feed null OR size <=0");
}
} catch (ServiceException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
-1
有在谷歌的API的Java客戶端的谷歌代碼項目的幾個樣本項目here
專爲Android有是日曆,Picasa和任務樣本,但也有一個谷歌文檔的命令行Java樣本。我認爲它可以很容易地移植到Android。
相關問題
- 1. 谷歌文檔列表API - 檢索文檔列表的問題
- 2. 在Google文檔中爲特定用戶檢索訪問控制文檔列表?
- 3. C#從SharePoint 2013文檔庫中檢索文檔列表
- 4. 嘗試檢索Google文檔中所有電子表格的列表
- 5. Google文檔列表API和Google Drive SDK
- 6. Mongodb檢索文檔
- 7. Mongodb文檔檢索
- 8. CakePHP檢索文檔
- 9. DocuSign文檔檢索
- 10. 子文檔MongoDB中檢索陣列
- 11. 檢索用戶的Google+活動列表
- 12. 將Google文檔列表嵌入網頁
- 13. 從Ruby訪問Google文檔列表API
- 14. 從SharePoint 2010文檔庫檢索文檔
- 15. 檢索Google文件夾內容與Google文檔文件夾 - 有什麼不同?
- 16. 在Google文檔列表API中更改文檔可見性
- 17. 如何檢索文檔的嵌套列表
- 18. 通過保存訂單的ID檢索mongo文檔列表
- 19. 從XPS文檔檢索鏈接/書籤列表?
- 20. 解析HTML文檔以檢索項目列表
- 21. 檢索文檔列表時進行Web緩存
- 22. CouchDB-Python檢索文檔
- 23. Cloudant-Python文檔檢索
- 24. 檢索特定文檔
- 25. 檢索xml文檔C#
- 26. 檢索嵌入式文檔
- 27. Couchbase Lite ios檢索文檔
- 28. 檢索列表
- 29. 如何使用分頁檢索Google文檔?
- 30. 將Google文檔內容檢索到vb窗體中
我不知道如何處理我的身份驗證令牌。這個令牌應該送到哪裏? http://what-google-url.com/?token=here – 2012-01-02 23:13:45