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.
@guilhermeof I don't know if you can get a direct link to a file... The file would also need to be publicly shared etc...
But you can generate a link on your own website and let people download the file from your site directly.
When you list the contents of Google Drive, it returns an array.
Each array item is also an array, containing file or folder info, including a
path
.If you
get
this path, you will get the raw file data, which you can use to force a download (see my previous reply).To see some sample code on how to get the raw data, check this out:
https://github.com/ivanvermeyen/laravel-google-drive-demo/blob/master/routes/web.php#L77-L93