The api's for SkyDrive and Dropbox have options for managing the user's entire drive. For Google Drive, the drive.file scope seems to give only access to the files created by the app. Is there a scope for Google Drive that gives access to the entire drive?
标签:
google-drive-sdk
相关问题
- in google-apps-script is there a way to get to kno
- How to get url to google drive file from GTLDriveF
- Google Drive SDK - Drive Integration Install URL
- Determine Google Drive location with Qt/C++
- List all shared users of a particular presentation
相关文章
- 大尺寸文件的上传下载到谷歌驱动器给错误(Uploading Downloading of large
- 我可以把/直接从我的谷歌拉驱动器联机?(Can I push/pull directly from
- 自动刷新令牌使用谷歌云端硬盘API与PHP脚本(Automatically refresh toke
- 清单与搜索查询文件返回超出范围的结果(drive.files.list调用,使用drive.file
- 如何将文件上传到谷歌驱动器(How to upload a file to Google Drive
- 如何在网站上显示谷歌从驱动器镜像?(How do I display images from Goo
- 如何收缩代码 - 在DEX 65K方法限制(How to shrink code - 65k met
- 自动删除在谷歌驱动器文件(Automatically delete files in google
Edit: The below answer was correct, but the latest version of the Drive API allows requesting of a full scope with
https://www.googleapis.com/auth/drive
. The Documents List API is no longer needed for this use case. See https://developers.google.com/drive/scopes#requesting_full_drive_scope_for_an_appTo be precise the Drive API gives access to Files created by the app and files that the user has opened with the app from the Drive UI (through open-with).
To manipulate all of the Drive files of the user you can use the Google Document List API . Though we currently forbid Drive applications (the ones that have get integrated in the Drive UI through the Open-with and Create dialogs) to request access to the Document List API as we want to keep Drive application on a per-file security model. (Basically adding the Document List scope in the Drive SDK settings raises an error).