I'm using Google Drive Android API
to store and share files and folders created. When I create a file/folder using Google Drive Android API
,by default created file or folder is private (not shared publicly).
When I share the link of file/folder created to any user, that user needs to send email request for access to owner. So owner have to make file/folder public manually in Google Drive to prevent access requests.
Where as for Google Drive iOS API
, when a file/folder is created, the file/folder created is by default public.
Another question I want to ask is, When I am querying list of folders in Root folder (with MIME_TYPE
as application/vnd.google-apps.folder
), the result is given with all folders. Where as using Google Drive iOS API
, queryForFilesList()
method returns only folders created by particular iOS app, not all folders in the root directory.
What I have to do to get this kind of result using Google Drive Android API
or Google Drive REST API
?