英文:
How to make sure my application is CalDAV compliant?
问题
我目前正在尝试设计一个Java日历应用程序,然后我想将其与谷歌日历集成。
它将包含用于创建和管理用户日历事件和工作时间的API。
我了解到,要与谷歌日历集成,我的应用程序应遵循CalDAV协议。
我正在努力理解CalDAV是什么,以及如何使用它来帮助我的应用程序与谷歌日历同步。我参考的文档是这个。还有许多其他参考/文档,它引用了iCalendar、WebDAV等。到目前为止,我已经理解的是,CalDAV是WebDAV的扩展,WebDAV是文件读写协议。而iCalendar是一种文件格式。我见过iCalendar用于邮件邀请(.ics文件)。
但我不明白如何在我的应用程序中使用所有这些,以及如何实现它?
英文:
I am currently trying to design a Calendar application in Java. Then I want to integrate it with Google Calendar.
It will contain APIs to create and manage calendar events and working hours for the user.
I read that for integration with Google calendar, my application should comply with CalDAV protocol.
I am trying to understand what CalDAV is and how can I use it to help my application sync with Google Calendar. The document I am referring is this. There are a lot of other references/documents which it refers to - iCalendar, WebDAV etc. So far what I have understood is that CalDAV is an extension of WebDAV, which is a file read/write protocol. And iCalendar is a file format. I have seen iCalendar used in mail invitations (.ics files).
But I don't understand how to use all of this in my application and how to implement it?
答案1
得分: 1
请看CalDAV指南,了解有关Google的CalDAV支持的详细信息。
英文:
For Google's CalDAV support details see CalDAV guide.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论