编程语言
首页 > 编程语言> > java – 找不到Google Calendar API – 缺少日历类

java – 找不到Google Calendar API – 缺少日历类

作者:互联网

我正在尝试制作一个使用Google API进行日历服务的应用程序.我正在引用本指南,现在我已经迈出了一步.具体来说,this step.

它告诉我导入这些类:

import com.google.api.client.http.HttpTransport;
import com.google.api.client.http.javanet.NetHttpTransport;
import com.google.api.client.json.jackson.JacksonFactory;
import com.google.api.services.calendar.Calendar;
import com.google.api.services.calendar.model.*;

现在,我已经下载了(我认为完整的)库:this source.但是它仍然在以下两行中给出了一个错误:

import com.google.api.services.calendar.Calendar;
import com.google.api.services.calendar.model.*;

我在哪里可以获得这两个班级?或者我应该效仿另一个例子?任何帮助,将不胜感激.

解决方法:

要使用谷歌日历API,您需要两个特定的库:

>日历服务java:https://developers.google.com/resources/api-libraries/download/calendar/v3/java
> Google api客户端java:https://code.google.com/p/google-api-java-client/downloads/detail?name=google-api-java-client-1.15.0-rc.zip&can=2&q=

并确保您导入所有必需的罐子.
就这样.

标签:android,java,google-api,google-calendar-api
来源: https://codeday.me/bug/20190831/1777735.html