我开始使用Google Calendar API。但是当我尝试在链接中设置时 https://developers.google.com/google-apps/calendar/instantiate 我遇到了一个大问题。
我尝试实现构造函数
Calendar service = new Calendar(httpTransport, accessProtectedResource, jsonFactory);
但这不在库中,这个构造函数不存在。
任何人都可以帮助我找到解决这个问题的新解决方案吗?
谢谢
确保您引用的是 com.google.api.services.calendar.Calendar
中定义的日历服务类,而不是 com.google.api.services.calendar.model.Calendar
中定义的模型类。