Skip to content

Initializing

Kunal Varma edited this page Mar 9, 2016 · 1 revision

Initializing

use Kunnu\OneDrive\Client;
use GuzzleHttp\Client as Guzzle;

//Create a Guzzle Client
$guzzle = new Guzzle;

//Access Token
$accessToken = "abcd1234....";

//Initialize the OneDrive Client
$client = new Client($accessToken, $guzzle);

Table of Contents

Getting Started

Examples

Clone this wiki locally