Home > OS >  How to get revisions name and edits count using Google Drive API
How to get revisions name and edits count using Google Drive API

Time:06-13

I am using Google Drive API V3. I would like to get named versions and edits count using Drive API V3.

Please check image here

I can able to get revisions list but it doesn't have "name" value. And also It doesn't contain edits count.

I tried following code (.Net)

string fileId = "*************";//sorry file id hided
var rev = _service.Revisions.List(fileId);
rev.Fields = "*";
var revs = rev.Execute();

Please help me.

CodePudding user response:

Unfortunately this is currently not possible

There is a respective feature request filed on Google's Issue Tracker.

I recommend you to "star" it to increase visibility and hopefully accelerate implementation.

  • Related