我正在处理Google日历重复活动。我创建了一个包含10个实例的定期事件,现在通过使用Zend_Gdata我想要删除此重复事件的任何单个实例而不是完整事件。
以下行删除完整的定期事件。
$ gdata->删除($ feedEntry-> getEditLink() - > HREF);
但我想只删除一个实例......
任何人都可以帮助我。
我非常感谢提前!!!
等待你的回复!
答案 0 :(得分:1)
我建议您迁移GData,因为API将在11月关闭(http://googleappsupdates.blogspot.ch/2014/06/calendar-gdata-api-google-calendar.html)并查看v3 api(https://developers.google.com/google-apps/calendar/)。在v3上,您可以通过调用delete(instance.getId())来删除定期事件的实例,您可以使用instances()调用来检索实例ID。