Skip to content Skip to sidebar Skip to footer

How To I Search Using Google Drive Api Using Javascript?

I am currently working with Google Drive API and search files. var test = false; gapi.client.drive.files.list({ pageSize: x, q: 'starred = test and viewedByMeTime

Solution 1:

Starred should be a boolean, not a string. Try removing your inner quotes.

q: "starred = "+test+" and viewedByMeTime > '2016-06-01T12:00:00-08:00' and not 'testemail@gmail.com' in writers",

Post a Comment for "How To I Search Using Google Drive Api Using Javascript?"