This gist was getting a lot of comments/questions, but since there are no notifications when someone replies to a gist, I've moved the setup instructions and a bunch of sample code to a dedicated Github repo.
Step by step instructions on how to get the various keys needed to work with Google Drive can be found on the Github repo as well:
https://github.com/ivanvermeyen/laravel-google-drive-demo/blob/master/README.md#create-your-google-drive-api-keys
Take a look at the commit history to get a quick overview of the demo code I've been adding:
If you have questions or comments, please create an issue on the Github repo. This is easier to follow up and enables others to find the answers as well.
@Brabas if I understand it correctly, you are trying to download all files in the
appply
folder?I don't think you can download a whole folder at once in a browser, but instead you can download each file individually.
So first get all files inside the folder, and then loop over the contents (files) and download them one by one...
If you want the end user to only need to download a single item, maybe you can save the files on the server and create a zip file or something? There's probably a package for that... Or you can just generate a download link for each file, because I don't think you can download multiple files in a single request...
Take a look at this sample code I just wrote...
Test Dir
would then becomeappply
.I did assume that the
appply
folder is in the root of your Google Drive, just to keep it simple.Hope this helps...