谷歌API和日历选择
我的谷歌日历 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
GetOwnCalendarsFeed()
和GetAllCalendarsFeed()
调用列出日历。这将返回一个条目列表,每个条目都保存给定日历的属性。您需要从entry.content.src
属性获取日历的 URL,并在InsertEntry
调用中使用它:You can list the calendars using the
GetOwnCalendarsFeed()
andGetAllCalendarsFeed()
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 theentry.content.src
attribute, and use this on yourInsertEntry
call: