i am using pydrive that trying to query the files from the date that i created. here is my sample code:
for f in drive.ListFile({'q':"modifiedTime > '2012-06-04T12:00:00-08:00'"}):
for f1 in f:
print(f1['title']+' '+f1['id'])
but while i run my code,
googleapiclient.errors.HttpError: <HttpError 400 when requesting https://www.googleapis.com/drive/v2/files?q=modifiedByMeDate+%3E+%272012-06-04T12%3A00%3A00-08%3A00%27&alt=json returned "Invalid query">
is returned.
is there something wrond in my query? thanks everyone..