如何为非主日历插入新事件?使用 python gdata
def addEvent(calendar_service):
event = gdata.calendar.CalendarEventEntry()
event.content = atom.Content(text='Tennis with John 30.12.2009 15:00-16:00')
event.quick_add = gdata.calendar.QuickAdd(value='true')
new_event = calendar_service.InsertEvent(event, '/calendar/feeds/default/private/full')
这将写入主日历。我如何将/InsertEvent写入我的“foo”日历?
谢谢!
def addEvent(calendar_service):
event = gdata.calendar.CalendarEventEntry()
event.content = atom.Content(text='Tennis with John 30.12.2009 15:00-16:00')
event.quick_add = gdata.calendar.QuickAdd(value='true')
new_event = calendar_service.InsertEvent(event, '/calendar/feeds/default/private/full')
This write to primary Calendar. How can i write/InsertEvent to my "foo" calendar?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,我在 a_calendar.content.src 中找到了该网址,它显示为“ http://www.google.com/calendar/feeds/"+id+"/private/full"
Ok, i found the url in a_calendar.content.src it show like "http://www.google.com/calendar/feeds/"+id+"/private/full"
尝试为 InsertEvent 指定不同的 URL。请参阅检索日历上的文档,或者尝试点击使用 GET 列出的 URL。在 InsertEvent 调用中使用检索到的日历的 URL 而不是“/calendar/feeds/default/private/full”。
Try specifying a different URL for InsertEvent. See the docs on retrieving calendars or just try hitting the listed URL with a GET. Use a retrieved calendar's URL instead of '/calendar/feeds/default/private/full' in the InsertEvent call.