我正在尝试在 Eclipse 中将 Google 的日历 API 实现到我的 Spring Boot 项目中。
我在第 3 步,我要复制代码,但是在所有 Google API 导入下都存在错误:
我得到的错误:
导入 com.google 无法解析
导致错误的 Gradle 文件:
更新: 我在 Pom 文件中添加了以下内容,它删除了几乎所有的导入错误:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-calendar</artifactId>
<version>v3-rev224-1.22.0</version>
</dependency>
但是下面两个import还是有错误:
import com.google.api.client.extensions.java6.auth.oauth2.AuthorizationCodeInstalledApp;
import com.google.api.client.extensions.jetty.auth.oauth2.LocalServerReceiver;
侃侃无极
相关分类