In the Google.Apis.Drive.v2.Data.File class Google.Apis.Drive.v2.Data.File it simply provides the name of the last modified user. How to get full information about the user (for example, email address, user ID, etc.).
var service = new DriveService(auth); Google.Apis.Drive.v2.Data.File file = service.Files.Get("fileid").Fetch(); file.LastModifyingUserName;// = "User Name" //How to get email id of this user?
An organization may have more than one person with the same name and surname. This is the user id that is different. So I need an email id.
Eg Allan Donald => allan1@corp.com Allan Donald => allan2@corp.com
It is very possible.
c # google-drive-sdk
Srikanth P Vasist May 17 '13 at 13:04
source share