-
-
Save mehranhadidi/38e38b80e3d533650ed2b94a0f95f7f1 to your computer and use it in GitHub Desktop.
Log in to your Google Account and go to this website:
https://console.developers.google.com/
Create a new project using the dropdown at the top.
After you enter a name, it takes a few seconds before the project is successfully created on the server.
Make sure you have the project selected at the top.
Then go to Library and click on "Drive API" under "G Suite APIs".
And then Enable it.
Then, go to "Credentials" and click on the tab "OAuth Consent Screen". Fill in a "Product name shown to users" and Save it. Don't worry about the other fields.
Then go back to Credentials, click the button that says "Create Credentials" and select "OAuth Client ID".
Choose "Web Application" and give it a name.
Add https://developers.google.com/oauthplayground in "Authorized redirect URIs". You will need to use this in the next step to get your refresh token. Once you have the token, you can remove the URI.
Click Create and take note of your Client ID and Client Secret.
Now head to https://developers.google.com/oauthplayground.
Make sure you added this URL to your Authorized redirect URIs in the previous step.
In the top right corner, click the settings icon, check "Use your own OAuth credentials" and paste your Client ID and Client Secret.
In step 1 on the left, scroll to "Drive API v3", expand it and check the first drive scope.
Click "Authorize APIs" and allow access to your account when prompted. There will be a few warning prompts, just proceed.
When you get to step 2, check "Auto-refresh the token before it expires" and click "Exchange authorization code for tokens".
When you get to step 3, click on step 2 again and you should see your refresh token.
If you want to store files in your Google Drive root directory, then the folder ID can be null
.
Else go into your Drive and create a folder.
Because Google Drive allows for duplicate names, it identifies each file and folder with a unique ID. If you open your folder, you will see the Folder ID in the URL.
Pull in Flysystem Adapter for Google Drive:
composer require nao-pon/flysystem-google-drive:~1.1
Add the storage disk configuration to config/filesystem.php
:
return [
// ...
'cloud' => 'google', // Optional: set Google Drive as default cloud storage
'disks' => [
// ...
'google' => [
'driver' => 'google',
'clientId' => env('GOOGLE_DRIVE_CLIENT_ID'),
'clientSecret' => env('GOOGLE_DRIVE_CLIENT_SECRET'),
'refreshToken' => env('GOOGLE_DRIVE_REFRESH_TOKEN'),
'folderId' => env('GOOGLE_DRIVE_FOLDER_ID'),
],
// ...
],
// ...
];
And update your .env
file:
GOOGLE_DRIVE_CLIENT_ID=xxx.apps.googleusercontent.com
GOOGLE_DRIVE_CLIENT_SECRET=xxx
GOOGLE_DRIVE_REFRESH_TOKEN=xxx
GOOGLE_DRIVE_FOLDER_ID=null
Save GoogleDriveServiceProvider.php
to app/Providers
and add it to the providers array in config/app.php
:
App\Providers\GoogleDriveServiceProvider::class,
Now you should be up and running:
Route::get('test', function() {
Storage::disk('google')->put('test.txt', 'Hello World');
});
<?php | |
namespace App\Providers; | |
use Illuminate\Support\ServiceProvider; | |
class GoogleDriveServiceProvider extends ServiceProvider | |
{ | |
/** | |
* Bootstrap the application services. | |
* | |
* @return void | |
*/ | |
public function boot() | |
{ | |
\Storage::extend('google', function($app, $config) { | |
$client = new \Google_Client(); | |
$client->setClientId($config['clientId']); | |
$client->setClientSecret($config['clientSecret']); | |
$client->refreshToken($config['refreshToken']); | |
$service = new \Google_Service_Drive($client); | |
$adapter = new \Hypweb\Flysystem\GoogleDrive\GoogleDriveAdapter($service, $config['folderId']); | |
return new \League\Flysystem\Filesystem($adapter); | |
}); | |
} | |
/** | |
* Register the application services. | |
* | |
* @return void | |
*/ | |
public function register() | |
{ | |
// | |
} | |
} |
@ElevenMou i got it too. Did you find a solution?