我不能夠解析與谷歌日曆API的谷歌日曆事件。Java的谷歌日曆解析事件
URL feedUrl = new URL("https://www.googleapis.com/calendar/v3/calendars/"+ emailAddress +"/events/");
EventFeed eventFeed = calendarService.getFeed(feedUrl, EventFeed.class);
異常,最後一行:
com.google.gdata.util.ParseException: Unrecognized content type:application/json;charset=UTF-8
你可能要開始使用該API的V3版本而不是的gdata版本。 https://developers.google.com/google-apps/calendar/v3/reference/events/get – DaImTo