PHP code example of pecee / dropbox-sdk
1. Go to this page and download the library: Download pecee/dropbox-sdk 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/ */
pecee / dropbox-sdk example snippets
$service = new Pecee\Http\Dropbox\Dropbox($accessToken);
$imageContents = file_get_contents('image.jpg');
$response = $service->upload($imageContents, '/destination/image.jpg');
$service = new Pecee\Http\Dropbox\Dropbox($accessToken);
$this->service->download('/destination/image.jpg');
$service = new Pecee\Http\Dropbox\Dropbox($accessToken);
$response = $service->delete('/destination/image.jpg');