匿名上传文件到谷歌驱动器通过PHP脚本

时间:2014-03-07 22:26:14

标签: php google-drive-api google-api-php-client

您好我在使用以下PHP代码匿名上传文件到谷歌驱动器...

index.php档案

    <?php
session_start();
$url_array = explode('?', 'http://'.$_SERVER ['HTTP_HOST'].$_SERVER['REQUEST_URI']);
$url = $url_array[0];
require_once 'google-api-php-client/src/Google_Client.php';
require_once 'google-api-php-client/src/contrib/Google_DriveService.php';
$client = new Google_Client();
$client->setClientId('Client ID');
$client->setClientSecret('Secret key');
$client->setRedirectUri($url);
$client->setScopes(array('https://www.googleapis.com/auth/drive'));
if (isset($_GET['code'])) {
    $_SESSION['accessToken'] = $client->authenticate($_GET['code']);
    header('location:'.$url);exit;
} elseif (!isset($_SESSION['accessToken'])) {
    $client->authenticate();
}
$files= array();
$dir = dir('files');
while ($file = $dir->read()) {
    if ($file != '.' && $file != '..') {
        $files[] = $file;
    }
}
$dir->close();
if (!empty($_POST)) {
    $client->setAccessToken($_SESSION['accessToken']);
    $service = new Google_DriveService($client);

    $file = new Google_DriveFile();
    foreach ($files as $file_name) {
        $file_path = 'files/'.$file_name;
        $mime_type = "text/plain";
        $file->setTitle($file_name);
        $file->setDescription('This is a '.$mime_type.' document');
        $file->setMimeType($mime_type);
        $createdFile = $service->files->insert(
            $file,
            array(
                'data' => file_get_contents($file_path),
                'mimeType' => $mime_type
            )
        );


        // Uncomment the following line to print the File ID
     //print 'File ID: %s' % $createdFile->getId();

    }

    header('location:'.$url);exit;
}
include 'index.phtml';
?>

index.phtml

<!DOCTYPE html>
<html lang="es">
    <head>
        <meta charset="UTF-8">
        <title>Google Drive Example App</title>
    </head>
    <body>
        <ul>
        <?php foreach ($files as $file) { ?>
            <li><?php echo $file; ?></li>
        <?php } ?>
        </ul>
        <form method="post" action="<?php echo $url; ?>">
            <input type="submit" value="Send" name="submit">
        </form>
    </body>
</html>

现在的问题是每次我在我的网络浏览器上运行index.php它都会要求我授权,但我想要做的是让任何有或没有谷歌驱动器帐户的随机用户上传文件到我的谷歌驱动器帐户通过index.php。这似乎不起作用..我可能做错什么任何帮助将不胜感激..谢谢

2 个答案:

答案 0 :(得分:0)

尽管有评论,但可以允许匿名用户通过您的应用上传到您的Google云端硬盘帐户。

仅限一次,您需要自行验证,然后授权您的应用使用离线访问权限访问您的云端硬盘帐户。这将创建一个刷新令牌。将刷新令牌存储在服务器的某个位置。你可以写一些只执行一次的代码,或者你可以使用Oauth2 Playground。

然后,匿名用户可以将文件上传到您的应用,然后您的应用可以使用存储的刷新令牌将该文件上传到您的Google云端硬盘,以请求访问令牌。

另一种(可能更好的)方法是使用服务帐户。

答案 1 :(得分:0)

在@keaner的帖子链接中找到,有可能是 https://developers.google.com/drive/web/service-accounts

关于服务与常规帐户,来自文档

  

“由于无法访问服务帐户的Google云端硬盘用户界面,因此无法为此类帐户购买额外的Google云端硬盘存储空间。因此,您可能更喜欢使用普通帐户而非服务帐户。“