I have configured in my google account application following CalDAV and Google Calendar API instructions.
As result I have turned on 2 APIs for my application
- CalDAV API;
- Google Calendar API (GC API).
I have created token to get access via my personal client to google calendar information. Using quick start guide I have loaded only my personal calendar events. I have investigated other java samples but I did not find how to load calendars of different users.
Is it possible to load someones calendar information via CalDAV\GC API with java client? Which clients information I should have got to load clients data (accept loginName)? Can I have a link to get more information about loading users' calendar events to view & manage its from external applications?
- how I can be authenticated as user who has a permission to access the other calendar events (i have to use my local application)? - how i can know users `calendarId`? is it possible to load it in dynamic way (if i know users mail or login only)? - is it possible to improve samples to resolve my issue?
I have checked [calendar cmd sample](https://github.com/google/google-api-java-client-samples/tree/master/calendar-cmdline-sample) and [oauth2 cmd sample](https://github.com/google/google-api-java-client-samples/tree/master/oauth2-cmdline-sample)? – Sergii Jan 15 '17 at 12:09