如何为非主日历插入新事件?使用 python gdata

发布于 2024-08-16 05:28:23 字数 390 浏览 9 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

胡渣熟男 2024-08-23 05:28:23

好的,我在 a_calendar.content.src 中找到了该网址,它显示为“ http://www.google.com/calendar/feeds/"+id+"/private/full"

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')
    feed = calendar_service.GetOwnCalendarsFeed()
    calurl=[a_calendar.content.src for i, a_calendar in enumerate(feed.entry)]
    new_event = calendar_service.InsertEvent(event, calurl[1]) #calurl[1] select the 2. cal of own's cals

Ok, i found the url in a_calendar.content.src it show like "http://www.google.com/calendar/feeds/"+id+"/private/full"

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')
    feed = calendar_service.GetOwnCalendarsFeed()
    calurl=[a_calendar.content.src for i, a_calendar in enumerate(feed.entry)]
    new_event = calendar_service.InsertEvent(event, calurl[1]) #calurl[1] select the 2. cal of own's cals
兔小萌 2024-08-23 05:28:23

尝试为 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.


~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文