PHP code example of daveismyname / laravel-dropbox
1. Go to this page and download the library: Download daveismyname/laravel-dropbox library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
daveismyname / laravel-dropbox example snippets
return [
/*
* set the client id
*/
'clientId' => env('DROPBOX_CLIENT_ID'),
/*
* set the client secret
*/
'clientSecret' => env('DROPBOX_SECRET_ID'),
/*
* Set the url to trigger the oauth process this url should call return Dropbox::connect();
*/
'redirectUri' => env('DROPBOX_OAUTH_URL'),
/*
* Set the url to redirecto once authenticated;
*/
'landingUri' => env('DROPBOX_LANDING_URL', '/'),
/**
* Set access token, when set will bypass the oauth2 process
*/
'accessToken' => env('DROPBOX_ACCESS_TOKEN', ''),
/**
* Set access type, options are offline and online
* Offline - will return a short-lived access_token and a long-lived refresh_token that can be used to request a new short-lived access token as long as a user's approval remains valid.
*
* Online - will return a short-lived access_token
*/
'accessType' => env('DROPBOX_ACCESS_TYPE', 'offline'),
/*
set the scopes to be used
*/
'scopes' => 'account_info.read files.metadata.write files.metadata.read files.content.write files.content.read',
];