搜索时Google Drive内部服务器错误

时间:2012-08-11 14:05:35

标签: php google-drive-api

使用q参数搜索时出错:

php代码:

$parameters['q'] = "title = 'hello'"; 
$children = $service->children->listChildren('root',$parameters);

返回:

  

致命错误:带有消息的未捕获异常'Google_ServiceException'   '调用GET时出错   https://www.googleapis.com/drive/v2/files/root/children?q=title%20%3D%20%27hello%27:   (500)内部错误'

我认为这与引号有关,因为如果我搜索'trashed = false'

它会起作用

我正在使用从以下位置检出的最新api客户端: http://code.google.com/p/google-api-php-client/source/checkout

2 个答案:

答案 0 :(得分:0)

在这段时间之后再次尝试它并且它现在正在工作。

答案 1 :(得分:0)

当您没有要求正确的权限时,会收到相同的错误消息。使用范围https://www.googleapis.com/auth/drive,而不是(仅)https://www.googleapis.com/auth/drive.file