Google drive api 500列表请求期间出错

Google drive api 500列表请求期间出错,google-drive-api,Google Drive Api,尝试执行gapi.client.drive.files.list时,即使使用API Expror,也开始出现500错误 授权工作正常 请求: GET https://www.googleapis.com/drive/v2/files?key={YOUR_API_KEY} Authorization: Bearer ZZZZZZZZZZZZZ X-JavaScript-User-Agent: Google APIs Explorer 答复: 500 Internal Server Erro

尝试执行
gapi.client.drive.files.list
时,即使使用API Expror,也开始出现500错误

授权工作正常

请求:

GET https://www.googleapis.com/drive/v2/files?key={YOUR_API_KEY}

Authorization:  Bearer ZZZZZZZZZZZZZ
X-JavaScript-User-Agent:  Google APIs Explorer
答复:

500 Internal Server Error

cache-control:  private, max-age=0
content-encoding:  gzip
content-length:  66
content-type:  application/json; charset=UTF-8
date:  Thu, 28 Mar 2013 01:24:28 GMT
expires:  Thu, 28 Mar 2013 01:24:28 GMT
server:  GSE

{
 "error": {
  "code": 500,
  "message": null
 }
}
昨天还在工作

更新

显然,如果我将结果集限制为19(无查询字符串)或13(父项中的q:'root'),它是有效的

我猜谷歌开发者昨天引入了某种限制? 或者可能是我有一个无效的文件条目,它启动了对谷歌服务器的刷新

我该如何调查

谢谢