我正在尝试使用服务帐户将文件上传到我的 Google 云端硬盘。当我部署此代码时,我不希望用户给予授权,我希望他们上传到我的帐户。我通过 PHP 使用它,下面是我到目前为止的位置。
此代码基于官方文档给出的示例。当我运行 php 脚本时,我没有收到任何错误,并且我 print_r 是结果变量。它有多个 URL,当我使用创建所有这些的同一个帐户访问它时,它说我需要请求许可。当我查看我的 Google Developers 控制台时,它说它收到了请求并成功运行了它。
但是,该文件并未显示在我的 Google 云端硬盘中的任何位置。我不确定在服务帐户上的哪里可以看到这些文件,以及如何将此文件放入我的 Google 云端硬盘。下面是我的代码。
我是否在某处缺少权限,或者我应该以某种方式将服务帐户连接到普通帐户?
DEFINE("TESTFILE", 'testfile-small.txt');
if (!file_exists(TESTFILE)) {
$fh = fopen(TESTFILE, 'w');
fseek($fh, 1024 * 1024);
fwrite($fh, "!", 1);
fclose($fh);
}
// The setup
// Authentication Credentials
$client_id = '<my client id>'; //Client ID
$service_account_name = '<my client email'; //Email Address
$key_file_location = '<path to key>'; //key.p12
// Create the client
$client = new Google_Client();
$client->setApplicationName("IEEE_File_Upload");
$service = new Google_Service_Drive($client);
// Check for token
if (isset($_SESSION['service_token'])) {
$client->setAccessToken($_SESSION['service_token']);
}
// Get the key
$key = file_get_contents($key_file_location);
// Create the credentials
$cred = new Google_Auth_AssertionCredentials(
$service_account_name,
array('https://www.googleapis.com/auth/drive'),
$key
);
// Set the credentials
$client->setAssertionCredentials($cred);
// Something with tokens
if ($client->getAuth()->isAccessTokenExpired()) {
$client->getAuth()->refreshTokenWithAssertion($cred);
}
$_SESSION['service_token'] = $client->getAccessToken();
// Actual file stuff
// Now lets try and send the metadata as well using multipart!
$file = new Google_Service_Drive_DriveFile();
$file->setTitle("Hello World!");
$result = $service->files->insert(
$file,
array(
'data' => file_get_contents(TESTFILE),
'mimeType' => 'application/octet-stream',
'uploadType' => 'multipart'
)
);
echo "<h3>Results Of Call:</h3>";
foreach ($result as $item) {
echo $item['volumeInfo']['title'], "<br /> \n";