我试图通过 CalDAV 获取 iCloud 日历的日历事件来快速找到空闲/忙碌时间。我能够获取可用的日历,并且根据此处的文档或使用DAViCal 客户端库获取给定日期范围的日历信息应该像将此 REPORT xml 请求发送到日历 URL(即https:// /caldav.icloud.com/..userid../calendars/work/):
<c:calendar-query xmlns:d="DAV:" xmlns:c="urn:ietf:params:xml:ns:caldav">
<d:prop>
<d:getetag />
<c:calendar-data />
</d:prop>
<c:filter>
<c:comp-filter name="VCALENDAR">
<C:comp-filter name="VEVENT">
<C:time-range start="20131115T000000Z" end="20131201T000000Z"/>
</C:comp-filter>
</c:comp-filter>
</c:filter>
</c:calendar-query>
这本质上就是GetEvents()
函数在 DAViCal 库中的作用。但是,我只是在回复中获取每个日历条目的 URL,而不是日历数据本身:
<?xml version='1.0' encoding='UTF-8'?><multistatus xmlns='DAV:'>
<response>
<href>/..userid../calendars/work/8D2D90EB-BD23-4137-AD22-70D971C587F2.ics</href>
<propstat>
<prop>
<getetag>"C=7734@U=b09ce345-d654-491e-bb4a-55358e7019d9"</getetag>
<getcontenttype>text/calendar</getcontenttype>
</prop>
<status>HTTP/1.1 200 OK</status>
</propstat>
</response>
<response>
<href>/..userid../calendars/work/AA2385AB-EA58-4625-AF87-6D4FB9405686.ics</href>
<propstat>
<prop>
<getetag>"C=7733@U=b09ce345-d654-491e-bb4a-55358e7019d9"</getetag>
<getcontenttype>text/calendar</getcontenttype>
</prop>
<status>HTTP/1.1 200 OK</status>
</propstat>
</response>
...
</multistatus>
我当然可以为每个单独的日历项做一个 GET 请求,但显然这很慢。在一个请求中下载日历数据是否有技巧?