使用PHP中的API的Google日历邀请代码

时间:2014-01-30 13:30:02

标签: php google-calendar-api

任何人都可以帮助我使用简单的代码: 发送电子邮件至lmno@gmail.com 使用ZendGdata API?

是新手所以,没有为此迈出第一步。 我已阅读基本文档,但仍然:(

普通代码将为:

  event = new Google_Event();
  $event->setSummary('test Summary ');
  $event->setLocation('Test location');
  $start = new Google_EventDateTime();
  $start->setDate('2014-01-30');
  $event->setStart($start);     
  $end = new Google_EventDateTime();
  $end->setDate('2014-01-30');
  $event->setEnd($end);
  $event->sendNotifications=true;
  $event->maxAttendees=2;
  $attendee1 = new Google_EventAttendee();
  $attendee2 = new Google_EventAttendee();
  $attendee1->setEmail("lmno@gmail.com");
  $attendee2->setEmail("pqrs@gslab.com");
  $attendees = array($attendee1,$attendee2);
  $event->attendees = $attendees;
  $createdEvent = $cal->events->insert('primary', $event);

我需要添加哪些额外的代码行, 像require_once? 应该为Zend路径提供。

0 个答案:

没有答案