Merge pull request #669 from msterzhang/patch-1

Update Aliyundrive.php
pull/679/head
qkqpttgf 2023-02-16 14:55:18 +08:00 committed by GitHub
commit f6f9687e53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ class Aliyundrive {
//$this->auth_url = 'https://websv.aliyundrive.com/token/refresh';
$this->auth_url = 'https://auth.aliyundrive.com/v2/account/token';
$this->api_url = 'https://api.aliyundrive.com/v2';
$this->api_url_v3 = 'https://api.aliyundrive.com/adrive/v3';
$this->driveId = getConfig('driveId', $tag);
$res = $this->get_access_token(getConfig('refresh_token', $tag));
}
@ -182,7 +183,7 @@ class Aliyundrive {
}
protected function fileList($parent_file_id)
{
$url = $this->api_url . '/file/list';
$url = $this->api_url_v3 . '/file/list';
$header["content-type"] = "application/json; charset=utf-8";
$header['authorization'] = 'Bearer ' . $this->access_token;