Giter Site home page Giter Site logo

flysystem-onedrive's Introduction

Flysystem OneDrive adapter

Author Software License

The OneDrive adapter gives the possibility to use the Flysystem filesystem abstraction library with OneDrive. It uses the Guzzle library to communicate with the API.

Installation

composer require jacekbarecki/flysystem-onedrive

Usage

To communicate with the OneDrive API, you will need an authorization token. For the development purposes, visit https://dev.onedrive.com/auth/msa_oauth.htm, click "Get token" and paste the token into your PHP app.
See the OneDrive API documentation for a detailed information about other ways of authorization.

require 'vendor/autoload.php';

//paste a temporary token from https://dev.onedrive.com/auth/msa_oauth.htm
$token = '123456789';

$oneDriveClient = new \JacekBarecki\FlysystemOneDrive\Client\OneDriveClient($token, new \GuzzleHttp\Client());
$oneDriveAdapter = new \JacekBarecki\FlysystemOneDrive\Adapter\OneDriveAdapter($oneDriveClient);

Known limitations

The OneDrive adapter has currently some limitations. If you want to contribute to the development of the adapter, feel free to submit pull requests that remove these limitations:

  1. Saving files is currently supported by the "Simple upload" method of the OneDrive API. This method only supports files up to 100MB in size and is implemented without stream support. To support larger files, a resumable upload method needs to be implemented.

  2. When listing items and a collection has more than 200 items, only first 200 items will be returned. To support bigger collections, the client should make multiple API calls, as described in the OneDrive API documentation. This is not implemented yet.

See also

Please note that the OneDrive API is case insensitive. Read the OneDrive API documentation to get to know the details.

flysystem-onedrive's People

Contributors

jacekbarecki avatar lumineida avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.