divinityfound/googledrivetree
Composer 安装命令:
composer require divinityfound/googledrivetree
包简介
Compiles into an array a Google Drive Folder into a treelike structure.
README 文档
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;
统计信息
- 总下载量: 131
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2015-08-03