flysystem-google-drive
flysystem-google-drive copied to clipboard
Flysystem adapter for Google Drive
I can start checking how this works and document in README.md if you want @nao-pon
I am building a Vue SPA application with Laravel as backend. When I tried to send a post request to my server with the fileId, it works and i get...
Facing memory limit issue on production while transferring zip file of size **730MB:** **ERROR: Allowed memory size of 134217728 bytes exhausted (tried to allocate 33554464 bytes) at nao-pon/flysystem-google-drive/src/GoogleDriveAdapter.php:1191** Current production...
Google Drive allows you to convert a file while you upload. For example upload a PPT to a Google Presentation or upload a csv and get a Google Sheet. Apparently...
The copy-method seems to be the only one that doesn't return the file you created. It's annoying because that way you can't save the file ID to a database. The...
Hi, its possible use in Lumen 5.6?
Hi Everyone, I'm trying to figure out this error that happens a couple of times a day (the rest of the time everything works great). It doesn't seem to be...
Hi, Just enabled caching with Symfony's `cache.app` adapter and noticed that `getContents` listings read from cache are missing additional fields. I am fetching `hasThumbnail` with `thumbnailLink` fine from API, but...
``` use Hypweb\Flysystem\GoogleDrive\GoogleDriveAdapter; use League\Flysystem\Filesystem; $client = new Google_Client(); $client->setAuthConfigFile('path_to_json_file'); $client->setScopes(['https://www.googleapis.com/auth/drive']); $googleDriveFileManager = new Filesystem( new GoogleDriveAdapter( new Google_Service_Drive($client), 'root' ) ); $result = $googleDriveFileManager->createDir('_test'); echo $result;exit; // displays 1...