Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 1.25 KB

File metadata and controls

44 lines (34 loc) · 1.25 KB

Gmail API Client Library for Java

The Gmail API lets you view and manage Gmail mailbox data like threads, messages, and labels.

This page contains information about getting started with the Gmail API using the Google API Client Library for Java. In addition, you may be interested in the following documentation:

Installation

Maven

Add the following lines to your pom.xml file:

<project>
  <dependencies>
    <dependency>
      <groupId>com.google.apis</groupId>
      <artifactId>google-api-services-gmail</artifactId>
      <version>v1-rev20210111-1.31.0</version>
    </dependency>
  </dependencies>
</project>

Gradle

repositories {
  mavenCentral()
}
dependencies {
  compile 'com.google.apis:google-api-services-gmail:v1-rev20210111-1.31.0'
}