I want to access complete file list of Google Drive folder (this list should contain files not created by me too)
Issue I am facing: with Drive SDK, only two types of scopes seems to be permissible- FILE_SCOPE and APP_FOLDER_SCOPE. They can only fetch files which are created by the application.
While changing to a more open scope- https://www.googleapis.com/auth/drive.readonly, I am getting statusCode=INTERNAL_ERROR, resolution=null while trying to connect GoogleApiClient.
Is it possible to have complete (read-only) access to Google Drive programmatically through Drive SDK?
Any suggestions or pointers for further R&D are welcome.