divinityfound / googledrivetree
There is no license information available for the latest version (dev-master) of this package.
Compiles into an array a Google Drive Folder into a treelike structure.
dev-master
2015-10-19 20:08 UTC
Requires
- php: >=5.3.0
- google/apiclient: 1.1.*
This package is not auto-updated.
Last update: 2024-12-25 10:57:33 UTC
README
##Google Drive Tree ###Google Drive to an Array Tree
This solution was developed to make it easier for developers to figure out the entirety of the Google Drive file map for public or private use.
###Google Setup
- Visit https://console.developers.google.com/project
- Create a project.
- On the menu on the left, expand "APIs & auth", select APIs
- Select under Google Apps APIs, Drive API
- Enable API
- On the menu on the left under "APIs & auth", select Credentials
- Under OAuth, click "Create new Client ID"
- Click Service Account, select P12 Key
- Store your P12 Key somewhere safe
- Visit https://admin.google.com
- Click "Security". It may be under Show More.
- Click Show More when in Security, click Advanced Settings.
- Click Manage "API client access"
- Insert Service Account's Client Id under Client Name, insert into API Scope "https://www.googleapis.com/auth/drive"
- Your API is now set up!
###Code
require_once(__DIR__ . '/../vendor/autoload.php'); $params = array(); $params['client_id'] = 'xyz.apps.googleusercontent.com'; $params['service_account_name'] = 'xyz@developer.gserviceaccount.com'; $params['key'] = 'your_directory.P12'; $params['sub'] = 'youremail@example.com'; $params['drive'] = 'drive_folder'; $data = new \Divinityfound\GoogleDriveTree\Processor($params); echo '<pre>'; print_r($data->file_tree); echo '</pre>'; exit;