PHP code example of as247 / flysystem-onedrive
1. Go to this page and download the library: Download as247/flysystem-onedrive library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
as247 / flysystem-onedrive example snippets
$token=new \As247\CloudStorages\Support\OneDriveOauth();
$token->setClientId('[Client ID]');
$token->setTenantId('[Tenant ID]');
$token->setClientSecret('[Client secret]');
$token->setRefreshToken('[Refresh token]');
$graph = new \Microsoft\Graph\Graph();
$graph->setAccessToken($token->getAccessToken());
$adapter = new \As247\Flysystem\OneDrive\OneDriveAdapter($graph, '[root path]');
$filesystem = new \League\Flysystem\Filesystem($adapter);