【问题标题】:Google Drive API Unable to Write FolderGoogle Drive API 无法写入文件夹
【发布时间】:2017-11-15 23:16:47
【问题描述】:

我已从 Google 文档中拼凑出此内容,我正在尝试将测试文件夹写入 Google Drive APP,但出现此错误:

An error occurred: {
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "insufficientPermissions",
    "message": "Insufficient Permission"
   }
  ],
  "code": 403,
  "message": "Insufficient Permission"
 }
}

在网上搜索似乎是由于范围?这就是为什么我在下面添加了这么多:

require_once 'vendor/autoload.php';

date_default_timezone_set('Europe/London');

define('APPLICATION_NAME', 'Pauls Google Drive');
define('CREDENTIALS_PATH', '~/.credentials/drive-php-quickstart.json');
define('CLIENT_SECRET_PATH', __DIR__ . '/client_secret_paul.json');
// If modifying these scopes, delete your previously saved credentials
// at ~/.credentials/drive-php-quickstart.json
define('SCOPES', implode(' ', array(
        Google_Service_Drive::DRIVE,
        Google_Service_Drive::DRIVE_FILE,
        Google_Service_Drive::DRIVE_APPDATA,
        Google_Service_Drive::DRIVE_READONLY,
        Google_Service_Drive::DRIVE_METADATA,
        Google_Service_Drive::DRIVE_METADATA_READONLY
    )
));

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(APPLICATION_NAME);
    $client->setScopes(SCOPES);
    $client->setAuthConfig(CLIENT_SECRET_PATH);
    $client->setAccessType('offline');

    // Load previously authorized credentials from a file.
    $credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);
    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);

        // 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;
}

/**
 * Expands the home directory alias '~' to the full path.
 * @param string $path the path to expand.
 * @return string the expanded path.
 */
function expandHomeDirectory($path) {
    $homeDirectory = getenv('HOME');
    if (empty($homeDirectory)) {
        $homeDirectory = getenv('HOMEDRIVE') . getenv('HOMEPATH');
    }
    return str_replace('~', realpath($homeDirectory), $path);
}

function getFolderExistsCreate($service, $folderName, $folderDesc) {
    // List all user files (and folders) at Drive root
    $files = $service->files->listFiles();
    $found = false;
    // Go through each one to see if there is already a folder with the specified name
    foreach ($files['items'] as $item) {
        if ($item['title'] == $folderName) {
            $found = true;
            return $item['id'];
            break;
        }
    }
    // If not, create one
    if ($found == false) {
        $folder = new Google_Service_Drive_DriveFile();
        //Setup the folder to create
        $folder->setName($folderName);
        if(!empty($folderDesc))
            $folder->setDescription($folderDesc);
        $folder->setMimeType('application/vnd.google-apps.folder');
        //Create the Folder
        try {
            $createdFile = $service->files->create($folder, array(
                'mimeType' => 'application/vnd.google-apps.folder',
            ));
            // Return the created folder's id
            return $createdFile->id;
        } catch (Exception $e) {
            print "An error occurred: " . $e->getMessage();
        }
    }
}


// Get the API client and construct the service object.
$client = getClient();
$service = new Google_Service_Drive($client);

getFolderExistsCreate( $service, 'Test', 'This is a test folder' );

getFolderExistsCreate 是实际创建文件夹的方法,它位于代码的一半以上。请帮忙!! :) 我已经能够从驱动器返回文件列表而没有错误,所以我很高兴凭据和连接都正常。

【问题讨论】:

  • 如答案中所述,如果您更改范围,请删除以前的凭据。

标签: google-api-php-client google-api-client google-drive-android-api create-directory


【解决方案1】:

下面的确认呢?

  1. 再次确认 Drive API 已启用。
  2. 您说您添加了范围。所以请删除~/.credentials/drive-php-quickstart.json 的文件一次。然后,运行您的脚本并再次创建drive-php-quickstart.json。这样,添加的作用域就会反映到访问令牌和刷新令牌中。

如果这些对你没有用,我很抱歉。

【讨论】:

    【解决方案2】:

    “代码”:403, “消息”:“权限不足”

    此错误指向文件夹权限。

    为了让您的应用程序与文件夹通信(写入或读取),您必须使用服务帐户电子邮件 ID 共享该文件夹。

    设置文件夹权限的步骤: 例如, 使用的 Google Drive API 凭据是服务帐户密钥, (其他选项为 API 密钥、OAuth 密钥),

    1. 从 service-account.json 文件中复制“client_email”。

      [在创建服务帐户时生成, 用于设置谷歌驱动认证的文件:$client->setAuthConfig('service-account.json'), 要查找的 client_email 模式:SERVICE_ACCOUNT_NAME @ PROJECT_IDiam.gserviceaccount.com ]

    2. 在谷歌驱动器中,右键单击选择的需要上传文件的文件夹,选择“共享”。添加 client_email 。点击“完成”。此过程是为 client_email 提供文件夹访问权限。

    3. 获取此文件夹的文件夹 ID(右击 - 选择可共享链接 - 仅 ID)。在文件调用中使用这个folderId 新的 Google_Service_Drive_DriveFile(数组( '名称' => $文件名, '父母' => 数组($folderId), '$mimeType' => $ftype)

    4. 注意fileuploaded也匹配mimeType。

    希望这会有所帮助!

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2012-06-11
      • 2021-10-12
      • 1970-01-01
      • 1970-01-01
      • 2022-01-03
      • 1970-01-01
      • 2020-01-06
      • 1970-01-01
      相关资源
      最近更新 更多