如何用 PHP 阅读 Google 云端硬盘电子表格?

2022-08-30 12:00:45

我所要做的就是从网站上阅读Google电子表格。我已经阅读并重新阅读了Google Drive API文档以及Stack Overflow上的所有内容Google Drive PHP,但我仍然无法到达终点区域。

以下是我所做的:

  1. 去过谷歌API控制台和:
    1. 在“服务”下启用“云端硬盘 API”和“云端硬盘 SDK”;
    2. 在“API Access”下创建了一个 OAuth 2.0 客户端 ID。在“Web应用程序的客户端ID”下,控制台给了我“客户端ID”,“电子邮件地址”,“客户端密钥”,“重定向URI”和“JavaScript起源”;
  2. 下载了“Google API PHP Client Library”;
  3. 打开Google云端硬盘文档(电子表格)并单击“共享”以获取文档的“密钥”;
  4. 设置以下代码:
<?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

我做错了什么?我已经把头发拉了出来(好吧,剩下的是什么)。


答案 1

还有一个更容易,但不太干净的解决方案,如果你不想打扰API或Google身份验证。

  1. 转到 Google 云端硬盘中的电子表格。
  2. 转到文件 ->发布到 Web
  3. 在“发布到 Web”对话框中,您可以获取指向电子表格的.csv链接。

enter image description here

现在,您可以像访问 Web 上的任何其他 csv 文件一样访问内容。下面是一些示例代码:

$spreadsheet_url="https://docs.google.com/spreadsheet/pub?key=<somecode>&single=true&gid=0&output=csv";

if(!ini_set('default_socket_timeout', 15)) echo "<!-- unable to change socket timeout -->";

if (($handle = fopen($spreadsheet_url, "r")) !== FALSE) {
    while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
        $spreadsheet_data[] = $data;
    }
    fclose($handle);
}
else
    die("Problem reading csv");

答案 2

请查看 Google 云端硬盘 PHP 快速入门。您实际上并未授权您的客户。起价$authUrl = $client->createAuthUrl();

所有 Google 云端硬盘请求都需要某种授权。


推荐