Converting from Google.Gdata.Calendar to Google.Apis.Calendar v3 -


how replace code -

calendarquery query = new calendarquery(); query.uri = new  uri(string.format("http://www.google.com/calendar/feeds/{0}/allcalendars/full", googleaccount));  calendarfeed resultfeed = (calendarfeed)service.query(query); 

using google.apis.calendar v3 interface?

you need perform list operation on calendarlist collection, see https://developers.google.com/google-apps/calendar/v3/reference/calendarlist/list

there java example @ bottom in examples section.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -