Sindbad~EG File Manager
# A minimal implementation of Dropbox API v2
[](https://packagist.org/packages/spatie/dropbox-api)
[](https://travis-ci.org/spatie/dropbox-api)
[](https://styleci.io/repos/88621289)
[](https://scrutinizer-ci.com/g/spatie/dropbox-api)
[](https://packagist.org/packages/spatie/dropbox-api)
This is a minimal PHP implementation of the [Dropbox API v2](https://www.dropbox.com/developers/documentation/http/overview). It contains only the methods needed for [our flysystem-dropbox adapter](https://github.com/spatie/flysystem-dropbox). We are open however to PRs that add extra methods to the client.
Here are a few examples on how you can use the package:
```php
$client = new Spatie\Dropbox\Client($authorizationToken);
//create a folder
$client->createFolder($path);
//list a folder
$client->listFolder($path);
//get a temporary link
$client->getTemporaryLink($path);
```
## Installation
You can install the package via composer:
``` bash
composer require spatie/dropbox-api
```
## Usage
The first thing you need to do is get an authorization token at Dropbox. Unlike [other companies](https://google.com) Dropbox has made this very easy. You can just generate a token in the [App Console](https://www.dropbox.com/developers/apps) for any Dropbox API app. You'll find more info at [the Dropbox Developer Blog](https://blogs.dropbox.com/developers/2014/05/generate-an-access-token-for-your-own-account/).
With an authorization token you can instantiate a `Spatie\Dropbox\Client`.
```php
$client = new Spatie\Dropbox\Client($authorizationToken);
```
Look in [the source code of `Spatie\Dropbox\Client`](https://github.com/spatie/dropbox-api/blob/master/src/Client.php) to discover the methods you can use.
If you do not find your favorite method, you can directly use the `contentEndpointRequest` and `rpcEndpointRequest` functions.
```php
public function contentEndpointRequest(string $endpoint, array $arguments, $body): ResponseInterface
public function rpcEndpointRequest(string $endpoint, array $parameters): array
```
Here's an example:
```php
$client->rpcEndpointRequest('search', ['path' => '', 'query' => 'bat cave']);
```
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Testing
``` bash
composer test
```
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
## Security
If you discover any security related issues, please email freek@spatie.be instead of using the issue tracker.
## Postcardware
You're free to use this package (it's [MIT-licensed](LICENSE.md)), but if it makes it to your production environment we highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using.
Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.
We publish all received postcards [on our company website](https://spatie.be/en/opensource/postcards).
## Credits
- [Alex Vanderbist](https://github.com/AlexVanderbist)
- [Freek Van der Herten](https://github.com/freekmurze)
- [All Contributors](../../contributors)
## Support us
Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects [on our website](https://spatie.be/opensource).
Does your business depend on our contributions? Reach out and support us on [Patreon](https://www.patreon.com/spatie).
All pledges will be dedicated to allocating workforce on maintenance and new awesome stuff.
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists