Я использую следующий код для получения настроек отпуска.Он использует клиентскую библиотеку PHP API Google и API Gmail для получения доступа к платформе Gmail
Я не могу понять, как назначить отпуск.У кого-нибудь есть пример кода, который делает это?
public function getVacation($userToken)
{
// Get the API client and construct the service object.
$client = $this->getClient($userToken);
$service = new Google_Service_Gmail($client);
// get the vacation settings
$user = 'me';
$results = $service->users_settings->getVacation($user);
print_r($results);
}
function getClient($userToken)
{
... a method that does the connection. for some reason stackoverflow sees it as too much code, but it works :) and i get vacation info.
}