2

サーバー上で定期的に更新されるファイルがあり、PHPクローンジョブを使用して、Googleドライブアカウントで毎日このファイルのバックアップを取りたい. ユーザー認証は必要ありません。ドライブのユーザー名とパスワードをファイルと一緒に渡すだけで、ドライブ アカウントにアップロードする方法はありますか?ドライブ アカウントにアクセスするたびに、そこにそのファイルが見つかりました。または、Google ドライブ サービス アカウントにファイルをアップロードして、その特定のファイルを自分のドライブ アカウントと共有することは可能ですか。

コードを手伝ってください..よろしくお願いします

4

1 に答える 1

4

私はGoogleドライブのドキュメントから私の質問に対する答えを得ました...サービスアカウントからアップロードされたファイルをGoogleドライブアカウントのいずれかに共有することが可能です。そのファイルを表示する必要があるドライブアカウントに、その特定のファイルのアクセス許可を提供する必要があるだけです....私のコードは以下のとおりです。

<?php
require_once "google-api-php-client/src/Google_Client.php";
require_once "google-api-php-client/src/contrib/Google_DriveService.php";
require_once "google-api-php-client/src/contrib/Google_Oauth2Service.php";
session_start();

function buildService() {

$DRIVE_SCOPE = array('https://www.googleapis.com/auth/drive','https://www.googleapis.com/auth/youtube.upload', 'https://www.googleapis.com/auth/youtube', 'https://gdata.youtube.com/action/GetUploadToken', 'https://gdata.youtube.com');
$SERVICE_ACCOUNT_EMAIL = 'SOMETHING@developer.gserviceaccount.com';

if($_SERVER['HTTP_HOST'] == 'localhost')
$SERVICE_ACCOUNT_PKCS12_FILE_PATH = 'YOUR_CERTIFICATE-privatekey.p12';
else
$SERVICE_ACCOUNT_PKCS12_FILE_PATH = $_SERVER['DOCUMENT_ROOT'].'YOUR_CERTIFICATE-privatekey.p12';

  $key = file_get_contents($SERVICE_ACCOUNT_PKCS12_FILE_PATH);
  $auth = new Google_AssertionCredentials(
      $SERVICE_ACCOUNT_EMAIL,
      $DRIVE_SCOPE,
      $key);

  $client = new Google_Client();
  $client->setApplicationName("You Tube API");
  $client->setUseObjects(true);
  $client->setAssertionCredentials($auth);
  $client::$auth->refreshTokenWithAssertion();
  $json = $client->getAccessToken();
  $accessToken = json_decode($json)->access_token;

  return new Google_DriveService($client);
}
function insertFile($service, $title, $description, $parentId, $mimeType, $filename) {

  $file = new Google_DriveFile();
  $file->setTitle($title);
  $file->setDescription($description);
  $file->setMimeType($mimeType);

  try {
    $data = file_get_contents($filename);

    $createdFile = $service->files->insert($file, array(
      'data' => $data,
      'mimeType' => $mimeType,
    ));

    // Uncomment the following line to print the File ID
     //print 'File ID: %s'.$createdFile->getId();
     //print 'Parent ID<pre>'.print_r($createdFile->getParents())."</pre>";

    $fileId = $createdFile->getId();
    $file = $service->files->get($fileId);

    $newPermission = new Google_Permission();
    $newPermission->setValue('DRIVE_ACCOUNT_TO_SHARE@gmail.com');
    $newPermission->setType('user');
    $newPermission->setRole('reader');
    try {
      return $service->permissions->insert($createdFile->getId(), $newPermission);
    } catch (Exception $e) {
      print "An error occurred: " . $e->getMessage();
    }


    return $createdFile;
  } catch (Exception $e) {
    print "An error occurred: " . $e->getMessage();
  }
}


$service = buildService();

$createdFile=insertFile($service, 'Testing', 'Testing for file upload', 'Parent_Id_', 'application/pdf', 'test.pdf');
echo "<pre>".print_r($createdFile)."</pre>";
?>
于 2013-05-15T06:23:02.563 に答える