Google 驱动器 PHP API: 删除显示权限不足
Google Drive PHP API: Delete shows Insufficient Permission
我一直在努力删除我的 Google 驱动器中的一个文件,但我无法让它工作。我已将范围从 $client->setScopes(Google_Service_Drive::DRIVE_METADATA_READONLY);
更改为 $client->setScopes(Google_Service_Drive::DRIVE);
。
这是我的完整代码:
<?php
require __DIR__ . '/vendor/autoload.php';
if (php_sapi_name() != 'cli') {
throw new Exception('This application must be run on the command line.');
}
/**
* Returns an authorized API client.
* @return Google_Client the authorized client object
*/
function getClient()
{
$client = new Google_Client();
$client->setApplicationName('Google Drive API PHP Quickstart');
//$client->setScopes(Google_Service_Drive::DRIVE_METADATA_READONLY);
$client->setScopes(Google_Service_Drive::DRIVE);
//$client->setScopes(Google_Service_Drive::DRIVE_APPDATA);
//$client->setScopes(Google_Service_Drive::DRIVE_FILE);
//$client->setAuthConfig('credentials.json');
$client->setAccessType('offline');
// Load previously authorized credentials from a file.
$credentialsPath = 'token.json';
if (file_exists($credentialsPath)) {
$accessToken = json_decode(file_get_contents($credentialsPath), true);
} else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code: ';
$authCode = trim(fgets(STDIN));
// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
// Check to see if there was an error.
if (array_key_exists('error', $accessToken)) {
throw new Exception(join(', ', $accessToken));
}
// Store the credentials to disk.
if (!file_exists(dirname($credentialsPath))) {
mkdir(dirname($credentialsPath), 0700, true);
}
file_put_contents($credentialsPath, json_encode($accessToken));
printf("Credentials saved to %s\n", $credentialsPath);
}
$client->setAccessToken($accessToken);
// Refresh the token if it's expired.
if ($client->isAccessTokenExpired()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
file_put_contents($credentialsPath, json_encode($client->getAccessToken()));
}
return $client;
}
// Get the API client and construct the service object.
$client = getClient();
$service = new Google_Service_Drive($client);
/*Get Files under hourly_backup*/
$hourly_backup_id = '1Y3cGEwXy9gLcw9WO0isqwtwtysU0g_bK';
$optParams = array(
//'pageSize' => 20,
'fields' => 'nextPageToken, files(id,name,size,parents,createdTime)',
'q' => "'".$hourly_backup_id."' in parents"
);
$results = $service->files->listFiles($optParams);
if (count($results->getFiles()) == 0) {
print "No files found.\n";
} else {
foreach ($results->getFiles() as $file) {
if(strtotime(date('Y-m-d H:i:s', strtotime($file->getcreatedTime()))) <= strtotime('-48 hours')){
try {
return $service->files->delete($file->getId());
} catch (Exception $e) {
print "An error occurred: " . $e->getMessage();
}
return NULL;
} else {
print "weh \n";
}
}
}
如果满足条件,删除代码为运行,我得到的是:
An error occurred: {
"error": {
"errors": [
{
"domain": "global",
"reason": "insufficientPermissions",
"message": "Insufficient Permission"
}
],
"code": 403,
"message": "Insufficient Permission"
}
}
更新:
我也在 API Explorer 中尝试过,它没有任何问题。
我正在使用的 google 驱动器是我的,我可以毫无问题地直接删除文件。我的代码中可能缺少什么?
"Insufficient Permission"
仅表示当前已通过身份验证的用户无权执行您正在尝试执行的操作。
你说你改变了作用域。但是您是否重新验证了该应用程序?该应用程序将弹出并请求驱动器帐户的权限。如果您仍然是 运行 仍然具有只读访问权限的旧访问令牌或刷新令牌,您将无法删除该文件。
是的!
为我工作只限于:
$client->setScopes(Google_Service_Drive::DRIVE);
并且您需要重新启动会话。
查找文件:
token.json
在您的目录中,删除此 token.json 文件并重试 quickstart.php。
您要求提供新的凭据,现在您的访问权限已完成,可以上传文件。
我一直在努力删除我的 Google 驱动器中的一个文件,但我无法让它工作。我已将范围从 $client->setScopes(Google_Service_Drive::DRIVE_METADATA_READONLY);
更改为 $client->setScopes(Google_Service_Drive::DRIVE);
。
这是我的完整代码:
<?php
require __DIR__ . '/vendor/autoload.php';
if (php_sapi_name() != 'cli') {
throw new Exception('This application must be run on the command line.');
}
/**
* Returns an authorized API client.
* @return Google_Client the authorized client object
*/
function getClient()
{
$client = new Google_Client();
$client->setApplicationName('Google Drive API PHP Quickstart');
//$client->setScopes(Google_Service_Drive::DRIVE_METADATA_READONLY);
$client->setScopes(Google_Service_Drive::DRIVE);
//$client->setScopes(Google_Service_Drive::DRIVE_APPDATA);
//$client->setScopes(Google_Service_Drive::DRIVE_FILE);
//$client->setAuthConfig('credentials.json');
$client->setAccessType('offline');
// Load previously authorized credentials from a file.
$credentialsPath = 'token.json';
if (file_exists($credentialsPath)) {
$accessToken = json_decode(file_get_contents($credentialsPath), true);
} else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code: ';
$authCode = trim(fgets(STDIN));
// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
// Check to see if there was an error.
if (array_key_exists('error', $accessToken)) {
throw new Exception(join(', ', $accessToken));
}
// Store the credentials to disk.
if (!file_exists(dirname($credentialsPath))) {
mkdir(dirname($credentialsPath), 0700, true);
}
file_put_contents($credentialsPath, json_encode($accessToken));
printf("Credentials saved to %s\n", $credentialsPath);
}
$client->setAccessToken($accessToken);
// Refresh the token if it's expired.
if ($client->isAccessTokenExpired()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
file_put_contents($credentialsPath, json_encode($client->getAccessToken()));
}
return $client;
}
// Get the API client and construct the service object.
$client = getClient();
$service = new Google_Service_Drive($client);
/*Get Files under hourly_backup*/
$hourly_backup_id = '1Y3cGEwXy9gLcw9WO0isqwtwtysU0g_bK';
$optParams = array(
//'pageSize' => 20,
'fields' => 'nextPageToken, files(id,name,size,parents,createdTime)',
'q' => "'".$hourly_backup_id."' in parents"
);
$results = $service->files->listFiles($optParams);
if (count($results->getFiles()) == 0) {
print "No files found.\n";
} else {
foreach ($results->getFiles() as $file) {
if(strtotime(date('Y-m-d H:i:s', strtotime($file->getcreatedTime()))) <= strtotime('-48 hours')){
try {
return $service->files->delete($file->getId());
} catch (Exception $e) {
print "An error occurred: " . $e->getMessage();
}
return NULL;
} else {
print "weh \n";
}
}
}
如果满足条件,删除代码为运行,我得到的是:
An error occurred: {
"error": {
"errors": [
{
"domain": "global",
"reason": "insufficientPermissions",
"message": "Insufficient Permission"
}
],
"code": 403,
"message": "Insufficient Permission"
}
}
更新:
我也在 API Explorer 中尝试过,它没有任何问题。
我正在使用的 google 驱动器是我的,我可以毫无问题地直接删除文件。我的代码中可能缺少什么?
"Insufficient Permission"
仅表示当前已通过身份验证的用户无权执行您正在尝试执行的操作。
你说你改变了作用域。但是您是否重新验证了该应用程序?该应用程序将弹出并请求驱动器帐户的权限。如果您仍然是 运行 仍然具有只读访问权限的旧访问令牌或刷新令牌,您将无法删除该文件。
是的! 为我工作只限于:
$client->setScopes(Google_Service_Drive::DRIVE);
并且您需要重新启动会话。 查找文件:
token.json
在您的目录中,删除此 token.json 文件并重试 quickstart.php。 您要求提供新的凭据,现在您的访问权限已完成,可以上传文件。