如何用 PHP 阅读 Google 云端硬盘电子表格?
2022-08-30 12:00:45
我所要做的就是从网站上阅读Google电子表格。我已经阅读并重新阅读了Google Drive API文档以及Stack Overflow上的所有内容Google Drive PHP,但我仍然无法到达终点区域。
以下是我所做的:
- 去过谷歌API控制台和:
- 在“服务”下启用“云端硬盘 API”和“云端硬盘 SDK”;
- 在“API Access”下创建了一个 OAuth 2.0 客户端 ID。在“Web应用程序的客户端ID”下,控制台给了我“客户端ID”,“电子邮件地址”,“客户端密钥”,“重定向URI”和“JavaScript起源”;
- 下载了“Google API PHP Client Library”;
- 打开Google云端硬盘文档(电子表格)并单击“共享”以获取文档的“密钥”;
- 设置以下代码:
<?php
session_start();
require_once 'lib/gapi/Google_Client.php';
require_once 'lib/gapi/contrib/Google_DriveService.php';
define( 'GDRIVE_CLIENT_ID', '<API Console - API Access - Client ID>' );
define( 'GDRIVE_CLIENT_SECRET', '<API Console - API Access - Client secret>' );
define( 'GDRIVE_REDIRECT_URIS', '<API Console - API Access - Redirect URIs>' );
define( 'GDRIVE_SCOPE_01', 'h t t p s://www.googleapis.com/auth/drive' );
define( 'GDRIVE_SCOPE_02', 'h t t p s://www.googleapis.com/auth/drive.apps.readonly' );
define( 'GDRIVE_SCOPE_03', 'h t t p s://www.googleapis.com/auth/drive.file' );
define( 'GDRIVE_SCOPE_04', 'h t t p s://www.googleapis.com/auth/drive.metadata.readonly' );
define( 'GDRIVE_SCOPE_05', 'h t t p s://www.googleapis.com/auth/drive.readonly' );
define( 'GDRIVE_FILE_KEY', '<'key' given from 'sharing' document>' );
$client = new Google_Client();
$client->setClientId( GDRIVE_CLIENT_ID );
$client->setClientSecret( GDRIVE_CLIENT_SECRET );
$client->setRedirectUri( GDRIVE_REDIRECT_URIS );
$client->setScopes( array( GDRIVE_SCOPE_01, GDRIVE_SCOPE_02, GDRIVE_SCOPE_03, GDRIVE_SCOPE_04, GDRIVE_SCOPE_05 ) );
try {
$file = $service->files->get( GDRIVE_FILE_KEY );
echo "Title: ", $file->getTitle();
echo "Description: ", $file->getDescription();
echo "MIME type: ", $file->getMimeType();
} catch (Exception $e) {
echo "An error occurred: ", $e->getMessage();
}
?>
所有运行正常(反正没有错误),直到调用触发异常:$service->files->get( GDRIVE_FILE_KEY )
发生错误:调用 GET 时出错:(403) 超出未经身份验证的使用的每日限制。继续使用需要注册。
https://www.googleapis.com/drive/v2/files
我做错了什么?我已经把头发拉了出来(好吧,剩下的是什么)。