All Projects → thephpleague → Flysystem Dropbox

thephpleague / Flysystem Dropbox

Flysystem Adapter for Dropbox [ABANDONED] replacement: https://packagist.org/packages/spatie/flysystem-dropbox

Labels

Projects that are alternatives of or similar to Flysystem Dropbox

Assistantcomputercontrol
Control your computer with your Google Home or Amazon Alexa assistant!
Stars: ✭ 554 (+726.87%)
Mutual labels:  dropbox
Dbxcli
A command line client for Dropbox built using the Go SDK
Stars: ✭ 764 (+1040.3%)
Mutual labels:  dropbox
Samay
Command line Time tracking and reporting. Built using Go(programming language) and protocol buffers.
Stars: ✭ 37 (-44.78%)
Mutual labels:  dropbox
Dbxfs
User-space file system for Dropbox
Stars: ✭ 673 (+904.48%)
Mutual labels:  dropbox
Fileprovider
FileManager replacement for Local, iCloud and Remote (WebDAV/FTP/Dropbox/OneDrive) files -- Swift
Stars: ✭ 724 (+980.6%)
Mutual labels:  dropbox
Wingpanel Indicator Dropbox
Wingpanel Dropbox Indicator
Stars: ✭ 18 (-73.13%)
Mutual labels:  dropbox
Oneupflysystembundle
A Flysystem integration for your Symfony projects.
Stars: ✭ 541 (+707.46%)
Mutual labels:  dropbox
Meteor Files
🚀 Upload files via DDP or HTTP to ☄️ Meteor server FS, AWS, GridFS, DropBox or Google Drive. Fast, secure and robust.
Stars: ✭ 1,033 (+1441.79%)
Mutual labels:  dropbox
Dropbox Sdk Js
The Official Dropbox API V2 SDK for Javascript
Stars: ✭ 756 (+1028.36%)
Mutual labels:  dropbox
Drive
☁️ A distributed cloud based lazy drive to files integrated with Dropbox, Google Drive.
Stars: ✭ 36 (-46.27%)
Mutual labels:  dropbox
Uppy
The next open source file uploader for web browsers 🐶
Stars: ✭ 24,829 (+36958.21%)
Mutual labels:  dropbox
Dropbox Sdk Python
The Official Dropbox API V2 SDK for Python
Stars: ✭ 702 (+947.76%)
Mutual labels:  dropbox
Elodie
An EXIF-based photo assistant, organizer, manager and workflow automation tool.
Stars: ✭ 840 (+1153.73%)
Mutual labels:  dropbox
Pb Jelly
A protobuf code generation framework for the Rust language developed at Dropbox.
Stars: ✭ 562 (+738.81%)
Mutual labels:  dropbox
Laravel Dropbox Driver
A storage extension for Dropbox.
Stars: ✭ 42 (-37.31%)
Mutual labels:  dropbox
Joplin
Joplin - an open source note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS. Forum: https://discourse.joplinapp.org/
Stars: ✭ 26,916 (+40073.13%)
Mutual labels:  dropbox
Dropbox
Zsh dropbox plugin
Stars: ✭ 17 (-74.63%)
Mutual labels:  dropbox
Cyberduck
Cyberduck is a libre FTP, SFTP, WebDAV, Amazon S3, Backblaze B2, Microsoft Azure & OneDrive and OpenStack Swift file transfer client for Mac and Windows.
Stars: ✭ 1,080 (+1511.94%)
Mutual labels:  dropbox
Nemiro.oauth.dll
Nemiro.OAuth is a class library for authorization via OAuth protocol in .NET Framework
Stars: ✭ 45 (-32.84%)
Mutual labels:  dropbox
Dropbox Stream
Upload & Download streams for Dropbox
Stars: ✭ 35 (-47.76%)
Mutual labels:  dropbox

Flysystem Adapter for Dropbox

Author Build Status Coverage Status Quality Score Software License Packagist Version Total Downloads

Installation

composer require league/flysystem-dropbox

Usage

Visit https://www.dropbox.com/developers/apps and get your "App secret".

You can also generate OAuth access token for testing using the Dropbox App Console without going through the authorization flow.

use League\Flysystem\Dropbox\DropboxAdapter;
use League\Flysystem\Filesystem;
use Dropbox\Client;

$client = new Client($accessToken, $appSecret);
$adapter = new DropboxAdapter($client, [$prefix]);

$filesystem = new Filesystem($adapter);
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].