Revisions list and get missing information

后端 未结 2 1632
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-27 12:24

Using the Google APIs Explorer as well as the official C# library for Google Drive API v3, the response is missing most of the documented fields. I specifically

2条回答
  •  悲哀的现实
    2021-01-27 12:40

    I was not able to retrieve the "lastModifyingUser" from the revisions API but I was able to retrieve the "lastModifyingUser" from the Files.get fro example:

        File foundFile = service.files().get(id)
                .setSupportsTeamDrives(true)
                .setFields("parents, webViewLink, properties, lastModifyingUser")
                .execute();
    
        System.out.println("Found file is " + foundFile);
        System.out.println("Parents " + foundFile.getParents());
        System.out.println("Owners " + foundFile.getOwners());
        System.out.println("Props " + foundFile.getProperties());
        System.out.println("Last user " + foundFile.getLastModifyingUser());
    

提交回复
热议问题