使用带有PHP的google驱动器api将文件上传到特定文件夹

前端之家收集整理的这篇文章主要介绍了使用带有PHP的google驱动器api将文件上传到特定文件夹前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用谷歌驱动器api上传文件,
到目前为止这是我的代码
现在文件上传到我的root,我想更改到另一个文件夹的路径,
<?PHP
        error_reporting(E_ALL);
        ini_set('display_errors',1);
        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();
        // Get your credentials from the APIs Console
        $client->setClientId('***');
        $client->setClientSecret('***');
        $client->setRedirectUri('http://***');
        $client->setScopes(array('https://www.googleapis.com/auth/drive'));

        if(empty($_GET['code']))
        {
            $client->authenticate();
        }

        $myfile= "video.mp4";
        $type='video/mp4';

        $service = new Google_DriveService($client);

        // Exchange authorization code for access token
        $accessToken = $client->authenticate($_GET['code']);
        $client->setAccessToken($accessToken);


        //Insert a file

        $file = new Google_DriveFile();
        $file->setTitle('filename.mp4');
        $file->setDescription('A video');
        $file->setMimeType($type);

        $data = file_get_contents($myfile);

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

        print_r($createdFile);
        echo "<br />";

我试过stackoverflow的一些帖子
并没有一个为我工作我得到了错误,
提前致谢

像这样设置父文件夹:
//Set the Parent Folder
$parent = new Google_Service_Drive_ParentReference(); //prevIoUsly Google_ParentReference
$parent->setId('0B9mYBlahBlahBlah');
$file->setParents(array($parent));
原文链接:https://www.f2er.com/php/134249.html

猜你在找的PHP相关文章