I have figured out the gdata libraries are not compatible with Android and have switched to the google-api-client libraries. I have followed the v2-atom-android sample but it does not cover how to retrieve events, only calendars. For my app, I need to开发者_StackOverflow be able to download the calendars and events - does anyone know how to do this with google-api-client libraries?
You need to send a GET request to a given event feed link which is included as a property of each calendar received as part of request to a Calendar feed.
I mean either link rel='self'
if ATOM or selfLink
if JSONC.
For more information, please refer to this address:
Retrieving events
Regards, PrieJos
精彩评论