0

Inside an Android App, I'm using the code below to list the contents of a folder

Drive.DriveApi.getFolder(mGoogleApiClient, driveId).listChildren(mGoogleApiClient).setResultCallback(listChildrenResultCallback);

While this lists contents uploaded by my app correctly, I do not see content created using the web UI.

Is this expected ?

pinoyyid
  • 21,499
  • 14
  • 64
  • 115
mbonnin
  • 6,893
  • 3
  • 39
  • 55
  • maybe linked to http://stackoverflow.com/questions/22408579/drivefolder-listchildren-not-showing-all-its-children – mbonnin Nov 17 '14 at 15:39

1 Answers1

1

GDAA (Google Drive Android Api) supports only the FILE scope, i.e. it can only work with objects (folders / files) that the app created. If you want to access files created by other apps (web UI) you have to use RESTful Api. See the scopes here.

seanpj
  • 6,735
  • 2
  • 33
  • 54