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
  • 20,293
  • 12
  • 57
  • 108
mbonnin
  • 6,500
  • 3
  • 34
  • 54
  • 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,635
  • 2
  • 31
  • 53