0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Google Drive API を使ってファイルをアップロードする

Posted at

GoogleDrive API v3 です。

参考

準備

  1. GoogleDrive APIを有効化
  2. APIキーを作成、有効化
  3. サービスアカウントを作成して鍵を json で作成、json をDL(認証用json)
  4. サービスアカウントの「メール」を GoogleDrive の任意のフォルダに「共有」設定

composer で google api client をインストール

設置する PHP ファイルの場所でインストールしてください。

$ sudo dnf install composer
$ composer require google/apiclient:^2.18

コードを書く

<?php
require_once 'vendor/autoload.php';

$client = new Client();
$client->setAuthConfig('./認証用jsonのパス.json');
$client->addScope(Drive::DRIVE);
$driveService = new Drive($client);

$fileMetadata = new Drive\DriveFile(array(
    'name' => 'hogehoge.mp4',
    'parents' => array('共有フォルダのID')
));
$content = file_get_contents('./hogehoge.mp4');
$file = $driveService->files->create($fileMetadata, array(
    'data' => $content,
    'mimeType' => 'video/mp4',
    'uploadType' => 'multipart',
    "supportsTeamDrives" => true,
    'fields' => 'id'
));

?>

指定したフォルダID以下に対象ファイルがアップロードされています。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?