Google云端服务列表文件()已共享(已关闭)

I have an issue, I am currently using apiDriveService from Google's own API. I am getting a list of files, which works fine using

$result = $drive->files->listFiles();

Is there a way to know with whom the files are shared.. Let me explain myself better.. I create a document on Google Drive and share it with my boss for example, I would like to see with whom that file is shared.

Is this possible?

Thanks :)

You can check the permissions of those files using the permissions collection for a file. However, the file will only contain an ID for each user and not the email address. This is so that other people with read permission will not be able to sniff the email addresses of other viewers, thereby circumventing privacy measures.