Skip to content

MazloDev/googledriveapi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoogleDrive Api Wrapper

usage

at first you need to create oauth client on google cloud platform. so go to the your google console dashboard and create a new client. then go to Drive.php file and fill below fields.

class Drive {

    public static $clientId='YOUR_CLIENT_ID';
    public static $clientSecret='YOUR_CLIENT_SECRET';
    public static $redirectUri='YOUR_REDIRECT_URI'; //you should set callback.php file in your redirect_uri: http://domain.com/callback.php

after done this settings now you can call other methods.

Authentication

to work on google APIs you need to authentication. so call getCode method.

getCode

    require 'Server.php';
    require 'Drive.php';

    //Drive::getCode(); return get code url

    echo '<a href="'.Drive::getCode().'">Go Auth</a>';

simple upload (filesize < 5mb)

    require 'Server.php';
    require 'Drive.php';
    //simpleUpload
    echo Drive::simpleUpload('YOUR_FILE_DOWNLOAD_LINK');

multipart upload (filesize > 5mb)

    require 'Server.php';
    require 'Drive.php';
    //simpleUpload
    echo Drive::resumableUpload('YOUR_FILE_DOWNLOAD_LINK','PUT YOUR FILE NAME HERE , example: myFile.mp3');

About

Google Drive Api Wrapper by PHP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%