使用事件URL使用Zend_Gdata库检索Google日历事件

时间:2010-02-14 23:26:41

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

我正在尝试使用Zend Gdata库检索Google日历活动。

当我创建一个事件时,我在数据库中存储了insertevent方法返回的事件URL。最初我以为我可以使用此URL然后删除该事件。经过一番研究后,我意识到你确实需要一个特殊的URL,它是一个事件URL,附加了一串额外的数字。我查看了Zend Gdata库中的各种事件检索方法,但它们似乎都不允许您只传递事件URL。它们似乎都需要文本或日期范围查询。如何检索我已知道其URL的事件的删除URL?

1 个答案:

答案 0 :(得分:1)

我最终意识到当你使用insertevent方法时,你可以通过调用$ createdEvent-> getEditLink() - > href来查询编辑网址。例如:

// ... All the code to connect to the calendar and create the event
$createdEvent = $gCal->insertEvent($newEvent);
$link_gcal = $createdEvent->getEditLink()->href;

希望这可以帮助其他人。享受!