1

私のサイトには埋め込みカレンダーがあり、ユーザーがカレンダーにイベントを追加できるようにしたいと考えていますが、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();
?>
4

1 に答える 1

0

これを使用する方法を理解したことがありませんでしたが、Zend Gdata を使用して、やりたいことをさらに行うことができました。

http://framework.zend.com/manual/1.12/en/zend.gdata.calendar.html

于 2012-10-11T16:12:57.763 に答える