All Projects → spatie → Dropbox Api

spatie / Dropbox Api

Licence: mit
A minimal implementation of Dropbox API v2

Projects that are alternatives of or similar to Dropbox Api

Flysystem Dropbox
A flysystem driver for Dropbox that uses the v2 API
Stars: ✭ 254 (+38.8%)
Mutual labels:  api, dropbox
Stone
The Official API Spec Language for Dropbox API V2
Stars: ✭ 371 (+102.73%)
Mutual labels:  api, dropbox
Drive
☁️ A distributed cloud based lazy drive to files integrated with Dropbox, Google Drive.
Stars: ✭ 36 (-80.33%)
Mutual labels:  api, dropbox
Pornhub Api
Unofficial API for PornHub.com in Python
Stars: ✭ 181 (-1.09%)
Mutual labels:  api
Graphql2rest
GraphQL to REST converter: automatically generate a RESTful API from your existing GraphQL API
Stars: ✭ 181 (-1.09%)
Mutual labels:  api
Graphql Faker
🎲 Mock or extend your GraphQL API with faked data. No coding required.
Stars: ✭ 2,361 (+1190.16%)
Mutual labels:  api
Orange
OpenResty/Nginx Gateway for API Monitoring and Management.
Stars: ✭ 2,208 (+1106.56%)
Mutual labels:  api
Emuto
manipulate JSON files
Stars: ✭ 180 (-1.64%)
Mutual labels:  api
Demo
Demo app for the API Platform framework
Stars: ✭ 184 (+0.55%)
Mutual labels:  api
Lumen Microservice
Lumen on Docker - Skeleton project with Nginx, MySQL & PHP 7 | Aws ECS, Google Kubernates, Azure Container Engine
Stars: ✭ 183 (+0%)
Mutual labels:  api
Huobi java
Java SDK for Huobi Spot API
Stars: ✭ 180 (-1.64%)
Mutual labels:  api
Sharex Upload Server
AKA ShareS - Feature full & Stable ShareX and file server in node. Includes images, videos, code, text, markdown rendering, password protected uploads, logging via discord, administration through Discord, url shortening, and a full front end. Use standalone or via reverse proxy
Stars: ✭ 180 (-1.64%)
Mutual labels:  api
Laravel Api Startup
"Laravel api startup" is a Laravel template project for start build an Api quickly and perfectly!
Stars: ✭ 184 (+0.55%)
Mutual labels:  api
Stackoverflow Clone
Clone project of a famous Q/A website for developers which is stackoverflow built using MySQL-Express-React-Node 🌐
Stars: ✭ 182 (-0.55%)
Mutual labels:  api
Linebot
🤖 SDK for the LINE Messaging API for Node.js
Stars: ✭ 184 (+0.55%)
Mutual labels:  api
Examples
Examples for GraphQL.NET
Stars: ✭ 179 (-2.19%)
Mutual labels:  api
Fbrecog
An unofficial python wrapper for the Facebook face recognition endpoint
Stars: ✭ 184 (+0.55%)
Mutual labels:  api
Deepr
A specification for invoking remote methods, deeply!
Stars: ✭ 181 (-1.09%)
Mutual labels:  api
Php Google Translate Free
PHP class to use the Google Translator API for free.
Stars: ✭ 182 (-0.55%)
Mutual labels:  api
Remarkableapi
Docs and implementation of the reMarkable file sync API
Stars: ✭ 183 (+0%)
Mutual labels:  api

A minimal implementation of Dropbox API v2

Latest Version on Packagist Build Status StyleCI Quality Score Total Downloads

This is a minimal PHP implementation of the Dropbox API v2. It contains only the methods needed for our flysystem-dropbox adapter. 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:

$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);

Support us

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

You can install the package via composer:

composer require spatie/dropbox-api

Usage

The first thing you need to do is get an authorization token at Dropbox. Unlike other companies Dropbox has made this very easy. You can just generate a token in the App Console for any Dropbox API app. You'll find more info at the Dropbox Developer Blog.

With an authorization token you can instantiate a Spatie\Dropbox\Client.

$client = new Spatie\Dropbox\Client($authorizationToken);

or alternatively you can authenticate as an App using your App Key & Secret.

$client = new Spatie\Dropbox\Client([$appKey, $appSecret]);

If you only need to access the public endpoints you can instantiate Spatie\Dropbox\Client without any arguments.

$client = new Spatie\Dropbox\Client();

Look in the source code of Spatie\Dropbox\Client to discover the methods you can use.

If you do not find your favorite method, you can directly use the contentEndpointRequest and rpcEndpointRequest functions.

public function contentEndpointRequest(string $endpoint, array $arguments, $body): ResponseInterface

public function rpcEndpointRequest(string $endpoint, array $parameters): array

Here's an example:

$client->rpcEndpointRequest('search', ['path' => '', 'query' => 'bat cave']);

If you need to change the subdomain of the endpoint URL used in the API request, you can prefix the endpoint path with subdomain::.

Here's an example:

$client->rpcEndpointRequest('content::files/get_thumbnail_batch', $parameters);

Changelog

Please see CHANGELOG for more information what has changed recently.

Testing

composer test

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Postcardware

You're free to use this package (it's MIT-licensed), 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, Kruikstraat 22, 2018 Antwerp, Belgium.

We publish all received postcards on our company website.

Credits

License

The MIT License (MIT). Please see License File for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].