Skip to content
Advertisement

How to get all folders & files based on Owner using PHP with Google Drive API

How to get all files and folder based on owner?

https://imgur.com/gallery/uf8nXOX

I tried this query but it is just listing all sharedWithMe :

JavaScript

I just want to group them by their Owner. Any suggestions? How will I do it in PHP or Should I query it in google API?

Thanks a lot!

Advertisement

Answer

Your request is using sharedWithMe You should be using “owners in”

JavaScript

from comment

You cant search on files not in a folder (parent) you can only search on files in a folder

'root' in parents will return all the files in root. However 'root' not in parents will fail as its not valid.

Im 100% sure what you mean by parent key. If you only want files in some directories i would suggest that you run requests for each of the directories you want and ignore the ones you dont. This will mean multiple requests or just get everything and sort it locally.

Reference:

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement