From 1295ad92ef53928f588689bd20c391f69a05fa57 Mon Sep 17 00:00:00 2001 From: qkqpttgf <45693631+qkqpttgf@users.noreply.github.com> Date: Sun, 28 Mar 2021 16:38:37 +0800 Subject: [PATCH] fix: need Sites scope --- disk/Onedrive.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disk/Onedrive.php b/disk/Onedrive.php index ab8ce45..6d56419 100644 --- a/disk/Onedrive.php +++ b/disk/Onedrive.php @@ -16,7 +16,7 @@ class Onedrive { } $this->oauth_url = 'https://login.microsoftonline.com/common/oauth2/v2.0/'; $this->api_url = 'https://graph.microsoft.com/v1.0'; - $this->scope = 'https://graph.microsoft.com/Files.ReadWrite.All offline_access'; + $this->scope = 'https://graph.microsoft.com/Files.ReadWrite.All https://graph.microsoft.com/Sites.ReadWrite.All offline_access'; $this->client_secret = urlencode($this->client_secret); $this->scope = urlencode($this->scope); $this->DownurlStrName = '@microsoft.graph.downloadUrl';