谷歌API和日历选择

发布于 2024-11-07 08:43:01 字数 59 浏览 0 评论 0原文

我的谷歌日历 API 有问题。 如何选择要添加事件的日历?它总是添加到默认日历吗?

谢谢

I have a problem with google calendar api.
How can you select which calendar to add an event? It add always to default calendar?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

居里长安 2024-11-14 08:43:01

您可以使用 GetOwnCalendarsFeed()GetAllCalendarsFeed() 调用列出日历。这将返回一个条目列表,每个条目都保存给定日历的属性。您需要从 entry.content.src 属性获取日历的 URL,并在 InsertEntry 调用中使用它:

client = calendar.service.CalendarService(email='x', password='y')
feed = client.GetOwnCalendarsFeed()
# map the 'title' -> 'url'
urls = dict((e.title.text, e.content.src) for e in feed.entry)
client.InsertEvent(event, urls['My Calendar'])

You can list the calendars using the GetOwnCalendarsFeed() and GetAllCalendarsFeed() calls. This will return a list of entries, each of which holds attributes for a given calendar. You need to obtain the calendar's url from the entry.content.src attribute, and use this on your InsertEntry call:

client = calendar.service.CalendarService(email='x', password='y')
feed = client.GetOwnCalendarsFeed()
# map the 'title' -> 'url'
urls = dict((e.title.text, e.content.src) for e in feed.entry)
client.InsertEvent(event, urls['My Calendar'])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文