我正在使用谷歌驱动器查找合同,每个合同都是由使用c#.net 4.0 / 4.5编写的应用程序上传的,其中包含一些属性,如名字,姓氏,位置,.... 我使用的是带有证书的服务帐户,而不是真正的Gmail。或者
我没有问题搜索任何东西但是如果我选择所有可能的属性并且它没有那么多属性我得到这个错误500后端错误。
这是我的应用生成的查询,它给出了500后端错误:
mimeType != 'application/vnd.google-apps.folder' and trashed=false
and (properties has { key='LastName' and value='test' and visibility='PUBLIC' }
or fullText contains 'test'
or properties has { key='Employer' and value='test' and visibility='PUBLIC' }
or properties has { key='FirstName' and value='test' and visibility='PUBLIC' }
or properties has { key='Location' and value='test' and visibility='PUBLIC' }
or properties has { key='Profession' and value='test' and visibility='PUBLIC' })
and (properties has { key='Type' and value='contract' and visibility='PUBLIC' })
编辑:
我刚注意到它并不总是后端错误,有时候会出现内部错误[500] 有时候它就像它应该的那样工作。