google-api-php-client (API v3) を使用して、Google カレンダーのイベントのリストをページに表示しています。それは機能していますが、結果をディスクにローカルにキャッシュしたいので、ページが読み込まれるたびに API 呼び出しを行う必要はありません (カレンダーはあまり変わりません)。結果をキャッシュすることは可能ですか?
Google_FileCache() クラスを持つ Google_FileCache.php というファイルがありますが、それは私が望むことを行うように見えますが、ドキュメントがまったく見つかりません。誰かがそれを使用しましたか?
これまでの私のコードは次のとおりです。
require_once 'google-api-php-client/src/Google_Client.php';
require_once 'google-api-php-client/src/contrib/Google_CalendarService.php';
session_start();
$CLIENT_ID = '{my client ID}';
$SERVICE_ACCOUNT_NAME = '{my service account name}';
$KEY_FILE = '{my p12 key file}';
$client = new Google_Client();
$client->setApplicationName("Public Calendar");
$client->setUseObjects(true);
if (isset($_SESSION['token'])) {
$client->setAccessToken($_SESSION['token']);
}
$key = file_get_contents($KEY_FILE);
$client->setAssertionCredentials(new Google_AssertionCredentials(
$SERVICE_ACCOUNT_NAME,
array('https://www.googleapis.com/auth/calendar', "https://www.googleapis.com/auth/calendar.readonly"),
$key)
);
$client->setClientId($CLIENT_ID);
$service = new Google_CalendarService($client);
if ($client->getAccessToken()) {
$_SESSION['token'] = $client->getAccessToken();
}
$rightNow = date('c');
$params = array('singleEvents' => 'true', 'orderBy' => 'startTime', 'timeMin' => $rightNow);
$events = $service->events->listEvents('primary', $params);
foreach ($events->getItems() as $event) {
echo '<p>'.$event->getSummary().'</p>';
}