Google Drive File Properties - How To Set Multiple Properties In One Request?
Using the following API allows you to obtain multiple properties assigned to a file: props = service.properties().list(fileId=fileId).execute().get('items', []) However, I don't s
Solution 1:
Think of properties as a list, rather than a map. So the answer is no.
To save http traffic you could batch your requests as described here https://code.google.com/p/google-api-java-client/wiki/Batch
Post a Comment for "Google Drive File Properties - How To Set Multiple Properties In One Request?"