gmail api php updatevacation

Я использую следующий код для получения настроек отпуска. Он использует клиентскую библиотеку 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 stackru sees it as too much code, but it works :) and i get vacation info.
}

1 ответ

Решение

Вы должны изучить использование обновления отпуска

$results = $service->users_settings->getVacation("me");
$results->responseSubject = 'Out of Office.';
$results = $service->users_settings->updateVacation("me", $results);
Другие вопросы по тегам