Я использую следующий код для получения настроек отпуска. Он использует клиентскую библиотеку Google API PHP и 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.
}
Вы должны посмотреть на использование Обновить отпуск
$results = $service->users_settings->getVacation("me");
$results->responseSubject = 'Out of Office.';
$results = $service->users_settings->updateVacation("me", $results);
Других решений пока нет …