私のサイトには埋め込みカレンダーがあり、ユーザーがカレンダーにイベントを追加できるようにしたいと考えていますが、PHPでこれをどのように処理しますか?
Google APIドキュメントを見ましたが、その例を実装する方法を理解できません。以下を参照してください。
$calendarListEntry = new CalendarListEntry();
$calendarListEntry->setId("calendarId");
$createdCalendarListEntry = $service->calendarList->insert($calendarListEntry);
echo $createdCalendarListEntry->getSummary();
現時点では、私のコードは次のようになっています。
<?php
require_once '../google-api-php-client/src/Google_Client.php';
require_once '../google-api-php-client/src/contrib/Google_CalendarService.php';
$calendarListEntry = new CalendarListEntry();
$calendarListEntry->setId("cdnavechicleservices@gmail.com");
$createdCalendarListEntry = $service->calendarList->insert($calendarListEntry);
echo $createdCalendarListEntry->getSummary();
?>