PHP脚本访问服务器到服务器到Google驱动器以显示我自己的文件

Posted

技术标签:

【中文标题】PHP脚本访问服务器到服务器到Google驱动器以显示我自己的文件【英文标题】:PHP script to access server to server to Google drive to display my own file 【发布时间】:2016-06-05 07:35:21 【问题描述】:

我需要帮助才能正确决定如何使用 google api。

我想开发一个脚本来将服务器到服务器(没有任何 Oauth2 连接)连接到我的 google 驱动器文件夹,以便在网页中显示 google 驱动器文件和文件夹。如果某些文件被更新,我还会设置一个 cron 作业来执行操作。

这可能吗? 在谷歌云平台中,我找到了具有服务器到服务器交互的驱动 api。这是正确的解决方案吗?

谢谢!

【问题讨论】:

查找服务帐号。只要服务帐户有权访问您的驱动器帐户上的文件(添加它就像您与任何其他用户共享它一样)它就可以访问它。然后查看developers.google.com/drive/v2/reference/files/watch 它需要 oauth 或公共文件。这对我来说不可能。感谢您的帮助! 服务帐户是 Oauth 是的,但它的预授权 Oauth。因此,您不会看到要求用户授予您访问权限的弹出窗口,这就是为什么它非常适合 cron 作业等服务器应用程序的原因。该文件不必在谷歌驱动器上公开,您只需授予服务帐户电子邮件地址访问该文件的权限,就像您对任何其他用户一样(这是预授权部分) 这是我写的关于服务帐户的教程,它可以帮助你理解我的意思daimto.com/google-developer-console-service-account 【参考方案1】:

https://developers.google.com/drive/v3/web/quickstart/php

在这里,您将找到启用 API 的方法。从那时起,您就可以使用该库了。

该网站将提供样本:

<?php
require __DIR__ . '/vendor/autoload.php';

define('APPLICATION_NAME', 'Drive API PHP Quickstart');
define('CREDENTIALS_PATH', '~/.credentials/drive-php-quickstart.json');
define('CLIENT_SECRET_PATH', __DIR__ . '/client_secret.json');
// If modifying these scopes, delete your previously saved credentials
// at ~/.credentials/drive-php-quickstart.json
define('SCOPES', implode(' ', array(
  Google_Service_Drive::DRIVE_METADATA_READONLY)
));

if (php_sapi_name() != 'cli') 
  throw new Exception('This application must be run on the command line.');


/**
 * Returns an authorized API client.
 * @return Google_Client the authorized client object
 */
function getClient() 
  $client = new Google_Client();
  $client->setApplicationName(APPLICATION_NAME);
  $client->setScopes(SCOPES);
  $client->setAuthConfigFile(CLIENT_SECRET_PATH);
  $client->setAccessType('offline');

  // Load previously authorized credentials from a file.
  $credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);
  if (file_exists($credentialsPath)) 
    $accessToken = file_get_contents($credentialsPath);
   else 
    // Request authorization from the user.
    $authUrl = $client->createAuthUrl();
    printf("Open the following link in your browser:\n%s\n", $authUrl);
    print 'Enter verification code: ';
    $authCode = trim(fgets(STDIN));

    // Exchange authorization code for an access token.
    $accessToken = $client->authenticate($authCode);

    // Store the credentials to disk.
    if(!file_exists(dirname($credentialsPath))) 
      mkdir(dirname($credentialsPath), 0700, true);
    
    file_put_contents($credentialsPath, $accessToken);
    printf("Credentials saved to %s\n", $credentialsPath);
  
  $client->setAccessToken($accessToken);

  // Refresh the token if it's expired.
  if ($client->isAccessTokenExpired()) 
    $client->refreshToken($client->getRefreshToken());
    file_put_contents($credentialsPath, $client->getAccessToken());
  
  return $client;


/**
 * Expands the home directory alias '~' to the full path.
 * @param string $path the path to expand.
 * @return string the expanded path.
 */
function expandHomeDirectory($path) 
  $homeDirectory = getenv('HOME');
  if (empty($homeDirectory)) 
    $homeDirectory = getenv("HOMEDRIVE") . getenv("HOMEPATH");
  
  return str_replace('~', realpath($homeDirectory), $path);


// Get the API client and construct the service object.
$client = getClient();
$service = new Google_Service_Drive($client);

// Print the names and IDs for up to 10 files.
$optParams = array(
  'pageSize' => 10,
  'fields' => "nextPageToken, files(id, name)"
);
$results = $service->files->listFiles($optParams);

if (count($results->getFiles()) == 0) 
  print "No files found.\n";
 else 
  print "Files:\n";
  foreach ($results->getFiles() as $file) 
    printf("%s (%s)\n", $file->getName(), $file->getId());
  

正如他们所说,这将显示 10 个文件。

这是(在我看来)最好的方法。

【讨论】:

以上是关于PHP脚本访问服务器到服务器到Google驱动器以显示我自己的文件的主要内容,如果未能解决你的问题,请参考以下文章

Google网络应用/脚本,用于自动将文件上传到特定的g-drive文件夹

将来自 Google Apps 脚本的 JSON 作为“访问网络应用程序的用户”提供服务

使用 ajax 和 google app 脚本将文件上传到驱动器

如何将客户端脚本调用移动到服务器? (Google云端硬盘电子表格Feed)

使用php将文件备份到谷歌驱动器

使用 Google Apps 脚本将文件上传到我的 google 驱动器(在 GOOGLE 中没有表格)