我几个月来一直在使用Google Drive API来获取我创建的Google云端硬盘文档的内容,并将其导出为HTML以嵌入我的网络应用程序中。
示例代码:
$client = new Google_Client();
$client->setApplicationName('My App');
$client->setScopes(Google_Service_Drive::DRIVE_READONLY);
$client->setDeveloperKey(GOOGLE_DRIVE_API_KEY);
$client->setAccessType('offline');
$service = new Google_Service_Drive($client);
$files = $service->files->listFiles([
'q' => "'" . GOOGLE_DRIVE_RN_FOLDER_ID ."' in parents",
'orderBy' => 'createdTime desc',
]);
foreach($files as $file)
{
$response = $service->files->export(
$file->id,
'text/html',
array(
'alt' => 'media'
)
);
$html = $response->getBody()->getContents();
}
这段代码在上周破了,我无法弄清楚原因。 $service->files->listFiles()
方法成功运行(我可以在响应中看到文件名),但$service->files->export()
方法返回500 Internal Error
。样品回复:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "internalError",
"message": "Internal Error"
}
],
"code": 500,
"message": "Internal Error"
}
}
尝试直接在网络浏览器中访问API网址时,我也会收到同样的错误:https://www.googleapis.com/drive/v3/files/1-DTp74pyo5nnDyR9cWt_d7oi7OdS7JwAZ6ZrKSQ54p0/export?mimeType=text%2Fhtml&key={my_key}
。
我尝试重新生成API密钥,创建新项目并生成全新的API密钥。我继续收到同样的错误。
答案 0 :(得分:0)
这可以回答你的问题,但我没有运气:Google Drive API's file Export endpoint is failing with API Key authentication?
如果您得到答案,请告诉我们!