我試圖編寫腳本來編輯Google電子表格。但是文檔不足以理解工作API的具體含義。我在API Manager中進行了註冊,並下載了json文件。你能給我一些例子,我如何在谷歌驅動器中編輯文檔?謝謝Google Drive API - PHP(CRUD)
0
A
回答
0
您可以使用Google Realtime API
,它通過使用操作轉換爲Google雲端硬盤中的文件提供協作服務。該API是由Google託管的JavaScript庫,提供用於創建協作應用程序的協作對象,事件和方法。
實時API數據模型可能會由於當前用戶以外的人員所做的編輯而改變。實時數據模型「最終一致」。這意味着如果所有合作者都停止編輯,最終每個人都會看到相同的數據模型。
多人需要同時編輯相同數據的應用程序。文檔編輯器是這類應用程序的絕佳示例。當多個用戶正在編輯文件時,Realtime API處理數據傳輸,存儲和衝突解決的所有方面。
對於腳本,使用Class DocumentApp
,文檔服務創建並打開可以編輯的Documents。可以使用DocumentApp打開或創建文檔。
// Open a document by ID.
var doc = DocumentApp.openById('DOCUMENT_ID_GOES_HERE');
// Create and open a document.
doc = DocumentApp.create('Document Name');
這裏有一個文檔如何更新驅動文件:https://developers.google.com/drive/v2/reference/files/update
相關問題
- 1. Google Drive Api和Google Drive Web
- 2. PHP - Google Drive API HTTP響應
- 3. Nodejs Google Drive API
- 4. Google Drive API IAuthenticator
- 5. Google Drive API children.list
- 6. Google Drive API javascript
- 7. Google Drive API V3
- 8. 如何使用Google Drive API?
- 9. Google Drive API statusCode = SIGN_IN_REQUIRED
- 10. Google Drive SDK和API
- 11. Google Drive API與Android
- 12. Google Drive API - MVC IDataStore
- 13. Google Drive Android API onChildrenRetrievedCallback
- 14. OAuth API Google Drive Python
- 15. Google Drive Api與php的集成
- 16. Google Drive API網頁身份驗證PHP
- 17. DrEdit PHP和Google Drive
- 18. Google文檔列表API和Google Drive SDK
- 19. app.js Google Drive上的JavaScript API
- 20. 配置Google Drive API和SDK
- 21. Google Drive API文件搜索
- 22. Google Drive公共API訪問
- 23. google drive javascript api gapi.client.drive.files undefined
- 24. Android App + Cordova + HTML5 + Google Drive Api
- 25. Google Drive REST API。根目錄
- 26. Google Drive API - 端口號?
- 27. Google-drive-java-api-returns-deleted-files
- 28. Google Drive API清單權限
- 29. 授權Android Google Drive API
- 30. Google Drive API追加文件?