Laravel Dropbox api File Upload example using league/flysystem-dropbox
https://www.itsolutionstuff.com/post/laravel-5-dropbox-api-file-upload-example-using-league-flysystem-dropbox-packageexample.html
Last updated
https://www.itsolutionstuff.com/post/laravel-5-dropbox-api-file-upload-example-using-league-flysystem-dropbox-packageexample.html
Last updated
By Hardik Savani May 20, 2016 Category : Laravel Dropbox APIPauseUnmuteLoaded: 2.20%FullscreenDropbox is a file hosting service and operated by American company Dropbox. They provides cloud storage, file synchronization and personal cloud software. Dropbox is very popular for file synchronization and cloud storage in todays. We can store large file on dropbox and share with someone, as well as we can store database backup in dropbox. Most of the people choose dropbox for cloud storage.
In this post i am going to give you example of how to upload file in our dropbox account using league/flysystem-dropbox package. as well as we also get uploaded file share link and view link that way if we need to store it on database then we can store on db. This posts i give you simple example to store file in dropbox account using Dropbox Client API. You have to just follow few step and you can run example.
Step 1: Installation Package
In this step we have to install league/flysystem-dropbox package and that way we can use Dropbox Client API method so first run bellow command.
Step 2: Token and Secret Configration
we need to require create app on dropbox website that way we can get token and secret so if you don't have account then you can create from here : Create App.
After create new app you can find token and secret. you have to copy that and add on .env file this way:
.env
Step 3: Create route and controller
In this step we need to create route and controller for simple example that way you can understand very well. So first create route this way.
app/Http/routes.php
Ok, now your HomeController we have to add dropboxFileUpload() this way, in this example i have img folder on public folder and admin.png image inside on that folder, after run this example it will go on dropbox account:
app/Http/Controllers/HomeController.php
Ok, now you can run example and see.....