获取特定Google日历的Zend_GData Feed

时间:2009-10-08 02:49:57

标签: php zend-framework gdata-api gdata google-calendar-api

我有一个很长的详细问题,关于如何获取特定日历的事件源,但在我发布之前想出了(我认为)解决方案。但是,即使使用解决方案,我仍然想知道我对此过程缺少什么。要获取单个日历的事件订阅源(或搜索该订阅源),我会执行以下操作:

  • 认证(显然)
  • 获取日历列表:getCalendarListFeed();
  • 从其中一个“日历”对象中获取id属性
  • 更改:... / calendar / feeds / default / XXX%40YYY
  • 收件人:... / calendar / feeds / XXX%40YYY / private / full
  • 将其传递给getCalendarEventFeed()以查询该日历。

为什么我必须操纵ID?看起来Zend_Gdata的文档遍布Google和Zend的网站。我没有找到一个关于getCalendarListFeed()的可用属性的好参考,所以也许我应该抓住ID以外的东西?

似乎更直接的方式 - 我在这里缺少什么?

2 个答案:

答案 0 :(得分:3)

您无需操纵ID。

如果您查看protocol guide,则会有一个<link rel="alternate" .../>元素,其中包含您想要的网址。

在PHP客户端中,您可以通过调用:

来检索此链接
// $entry is an instance of Zend_Gdata_Calendar_ListEntry
$link = $entry->getAlternateLink()->getHref();

此外,您正在寻找的文档在这里: http://framework.zend.com/apidoc/1.9/Zend_Gdata/Calendar/Zend_Gdata_Calendar_ListEntry.html

答案 1 :(得分:2)

我一直在寻找这个问题的答案,最终想出了以下内容:

$service = Zend_Gdata_Calendar::AUTH_SERVICE_NAME;
$Client = Zend_Gdata_ClientLogin::getHttpClient('googleaccount','googlepass',$service);
$Service = new Zend_Gdata_Calendar($Client);

$Query = $Service->newEventQuery();
$Query->setUser('calendarid'); # As you know, you can obtain this with getCalendarListFeed()
$Query->setVisibility('public');
$Query->setProjection('full');
$Query->setOrderby('starttime');
$Query->setFutureevents('true');

最初抛弃我的部分是,呼叫的“用户”部分实际上是日历ID。然后你可以做类似的事情:

$events = $Service->getCalendarEventFeed($Query);
foreach ($events as $Event)
{
   // work with Event object here...
}

(以上内容应该包含在try / catch中,但我在这里做得太懒了。)