Flysystem Adapter for OneDrive and SharePoint using Microsoft Graph API.
You can install the package via composer:
composer require dimasahmad/flysystem-onedrive-sharepoint
The first thing you need to do is get an authorization token for the Microsoft Graph API. For that you need to create an app on the Microsoft App Registration Portal.
use Microsoft\Graph\Graph;
use League\Flysystem\Filesystem;
use NicolasBeauvais\FlysystemOneDrive\OneDriveAdapter;
$graph = new Graph();
$graph->setAccessToken('EwBIA8l6BAAU7p9QDpi...');
$adapter = new OneDriveSharePointAdapter($graph, 'root');
$filesystem = new Filesystem($adapter);
// Or to use the approot endpoint:
$adapter = new OneDriveAdapter($graph, 'special/approot');
Please see CHANGELOG for more information what has changed recently.
composer test
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.