在哪里可以找到我的 PHP for Google App 的已保存凭据

Where can I find the saved credentials for my PHP for Google App

我已经编写了一个 PHP 项目来更新 Google 电子表格,而目前,我正在使用代码

require_once __DIR__ . '/vendor/autoload.php';
define('APPLICATION_NAME', 'Google Sheets API PHP Quickstart');
define('CREDENTIALS_PATH', '~/.credentials/sheets.googleapis.com-php-quickstart.json');
define('CLIENT_SECRET_PATH', __DIR__ . '/client_secret.json');
// If modifying these scopes, delete your previously saved credentials
// at ~/.credentials/sheets.googleapis.com-php-quickstart.json
define('SCOPES', implode(' ', array(
  Google_Service_Sheets::SPREADSHEETS)
));

但是我找不到凭据的存储位置,因此当我更改帐户时,我遇到了一个问题 "caller does not have the permission",我认为它仍在使用旧凭据。 谁能告诉我在哪里可以找到它?

谢谢

基于此PHP Quickstart samplesaved credentials保存在$credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);

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

您可以查看此文档以获取更多信息:Using OAuth 2.0 for Web Server Applications