user10208908
user10208908

Reputation:

Google Drive API (REST) - Get download, files views and so on....?? (Is it possible??)

This is documentation which I'm using - https://developers.google.com/drive/api/v3/search-parameters

Does anyone know the way of getting through Google Drive API, the number of times the file was downloaded, views(ideal views by whom)...

I could not find any way of doing this.

Upvotes: 0

Views: 642

Answers (1)

Linda Lawton - DaImTo
Linda Lawton - DaImTo

Reputation: 116918

Google drive files are denoted by a file resource this contains all the information that you have access to about the file. Only some of the information you are after is available

createdTime datetime The time at which the file was created (RFC 3339 date-time). writable

modifiedTime datetime The last time the file was modified by anyone (RFC 3339 date-time). Note that setting modifiedTime will also update modifiedByMeTime for the user.

lastModifyingUser nested object The last user to modify the file.

You can see who last changed the file but you cant see who has seen the file or any information about how many times it was downloaded.

Upvotes: 1

Related Questions