OAuth2/Google CalDAV - List of calendars for user
I used to request caldav servers to give all defined calendars for a given user. That works with fruux/ownCloud(Sabre) and also GCalendar the classic method. The request is this: method: PROPFIND headers:Depth: 1 urlstr:https://www.google.com/calendar/dav/{theUserName}@gmail.com/ contentType:application/xml content: <d:propfind xmlns:d="DAV:" xmlns:cs="http://calendarserver.org/ns/" xmlns:c="urn:ietf:params:xml:ns:caldav"> <d:prop> <d:resourcetype /> <d:displayname /> <cs:getctag /> <c:supported-calendar-component-set /> </d:prop> </d:propfind> Moving to Google OAuth2 has different calls, the