I am developing a mobile app (in Flutter) that can read and write files in a specific folder in the user's Google Drive.
Users can also manually upload files to this folder and the app must have access to these files.
So far, I am using drive.file
scope and did not manage to have access to the files that the user has uploaded manually.
Do I need to use drive
scope?
Is there any way to use the driver picker in my app and grant full access to a folder?
I would prefer to use drive.file
scope. (The difference is that 'drive.file' only gives you permission to files that your app has created or the user has explicitly shared with your app). But I don't know how to explicitly share a folder with my app.