Gmail API导入AuthorizationCodeInstalledApp和LocalServerReceiver Clases

时间:2015-10-11 22:34:12

标签: java gmail-api

我正在尝试创建一个发送电子邮件的java文件。 我创建了一个Google Web应用程序项目,对其进行了配置(希望我能正确完成),然后遵循Java Quickstart guide

虽然我无法导入这些类(因此猜测也无法运行该文件):

com.google.api.client.extensions.java6.auth.oauth2.AuthorizationCodeInstalledApp
import com.google.api.client.extensions.jetty.auth.oauth2.LocalServerReceiver

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

如果您使用的是Maven,请添加这两个依赖项。

<dependency>
    <groupId>com.google.oauth-client</groupId>
    <artifactId>google-oauth-client-java6</artifactId>
    <version>1.11.0-beta</version>
</dependency>
<dependency>
    <groupId>com.google.oauth-client</groupId>
    <artifactId>google-oauth-client-jetty</artifactId>
    <version>1.23.0</version>
</dependency>