My app uses Google Drive API to read files that a user has uploaded to their Drive storage area, and to write files and folders into this same directory. The user logs in with their own account/credentials.
My current understanding is that the only scope (access level) available for me to use in this case is "full drive access".
Is this a correct statement?
Dropbox supports an "Apps" folder where I can use their API to read/write, while being restricted to my own area. I'm surprised that Google doesn't offer something similar, as my users may not want to grant read/write access to their entire Drive storage, when all I need access to is a single directory (and all sub directories within, whether I create or user creates).
To provide a little more info, my app is a flashcard app. I want users, at a minimum, to be able to upload spreadsheets with data to be read in by the app. But users would like it if I didn't need full access to all their data.
https://www.googleapis.com/auth/drive.file
,View and manage Google Drive files and folders that you have opened or created with this app
. If this was not useful for your situation, I apologize. – TanaikeI'm more interested in straight API access from a single user account.
? Do you want to make access users to user's Google Drive using each account? Or do you want to make access users to user's Google Drive using only one account? – Tanaike