Я использую Google API Client для доступа к API Справочника. Мой код выглядит следующим образом:
function getClient()
{
$client = new Google_Client();
$client->setApplicationName('G Suite Directory API');
$client->setScopes(Google_Service_Directory::ADMIN_DIRECTORY_USER);
$client->setAuthConfig('credentials.json');
$client->setAccessType('offline');
$client->setApprovalPrompt('force');
// Load previously authorized token from a file, if it exists.
// The file token.json stores the user's access and refresh tokens, and is
// created automatically when the authorization flow completes for the first
// time.
$tokenPath = 'token.json';
if (file_exists($tokenPath)) {
$accessToken = json_decode(file_get_contents($tokenPath), true);
$client->setAccessToken($accessToken);
}
// If there is no previous token or it's expired.
if ($client->isAccessTokenExpired()) {
// Refresh the token if possible, else fetch a new one.
if ($client->getRefreshToken()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
} else {
.....
//this is where google creates the initial token
}
}
}
Моя проблема вращается вокруг этой строки:
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
Когда я первоначально авторизую клиента, я получаю token.json, который содержит токен обновления. Через час срок действия токена истекает, и он создает новый токен. Однако этот новый токен не включает токен обновления. Так что он будет обновляться только один раз, а через 2 часа перестанет работать.
Есть ли настройка, которую я пропускаю?
Мне пришлось добавить $client->setApprovalPrompt('force');
для того, чтобы начальный токен включал токен обновления.