public class HangoutsChat extends AbstractGoogleJsonClient
Enables bots to fetch information and perform actions in Google Chat. Authentication using a service account is a prerequisite for using the Google Chat REST API.
For more information about this service, see the API Documentation
This service uses HangoutsChatRequestInitializer
to initialize global parameters via its
HangoutsChat.Builder
.
Modifier and Type | Class and Description |
---|---|
static class |
HangoutsChat.Builder
Builder for
HangoutsChat . |
class |
HangoutsChat.Dms
The "dms" collection of methods.
|
class |
HangoutsChat.Media
The "media" collection of methods.
|
class |
HangoutsChat.Rooms
The "rooms" collection of methods.
|
class |
HangoutsChat.Spaces
The "spaces" collection of methods.
|
Modifier and Type | Field and Description |
---|---|
static String |
DEFAULT_BASE_URL
The default encoded base URL of the service.
|
static String |
DEFAULT_BATCH_PATH
The default encoded batch path of the service.
|
static String |
DEFAULT_MTLS_ROOT_URL
The default encoded mTLS root URL of the service.
|
static String |
DEFAULT_ROOT_URL
The default encoded root URL of the service.
|
static String |
DEFAULT_SERVICE_PATH
The default encoded service path of the service.
|
Constructor and Description |
---|
HangoutsChat(HttpTransport transport,
JsonFactory jsonFactory,
HttpRequestInitializer httpRequestInitializer)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
HangoutsChat.Dms |
dms()
An accessor for creating requests from the Dms collection.
|
protected void |
initialize(AbstractGoogleClientRequest<?> httpClientRequest) |
HangoutsChat.Media |
media()
An accessor for creating requests from the Media collection.
|
HangoutsChat.Rooms |
rooms()
An accessor for creating requests from the Rooms collection.
|
HangoutsChat.Spaces |
spaces()
An accessor for creating requests from the Spaces collection.
|
getJsonFactory, getObjectParser
batch, batch, getApplicationName, getBaseUrl, getGoogleClientRequestInitializer, getRequestFactory, getRootUrl, getServicePath, getSuppressPatternChecks, getSuppressRequiredParameterChecks
public static final String DEFAULT_ROOT_URL
public static final String DEFAULT_MTLS_ROOT_URL
public static final String DEFAULT_SERVICE_PATH
public static final String DEFAULT_BATCH_PATH
public static final String DEFAULT_BASE_URL
public HangoutsChat(HttpTransport transport, JsonFactory jsonFactory, HttpRequestInitializer httpRequestInitializer)
Use HangoutsChat.Builder
if you need to specify any of the optional parameters.
transport
- HTTP transport, which should normally be:
com.google.api.client.extensions.appengine.http.UrlFetchTransport
newCompatibleTransport
from
com.google.api.client.extensions.android.http.AndroidHttp
GoogleNetHttpTransport
jsonFactory
- JSON factory, which may be:
com.google.api.client.json.jackson2.JacksonFactory
com.google.api.client.json.gson.GsonFactory
com.google.api.client.extensions.android.json.AndroidJsonFactory
httpRequestInitializer
- HTTP request initializer or null
for noneprotected void initialize(AbstractGoogleClientRequest<?> httpClientRequest) throws IOException
initialize
in class AbstractGoogleClient
IOException
public HangoutsChat.Dms dms()
The typical use is:
HangoutsChat chat = new HangoutsChat(...);
HangoutsChat.Dms.List request = chat.dms().list(parameters ...)
public HangoutsChat.Media media()
The typical use is:
HangoutsChat chat = new HangoutsChat(...);
HangoutsChat.Media.List request = chat.media().list(parameters ...)
public HangoutsChat.Rooms rooms()
The typical use is:
HangoutsChat chat = new HangoutsChat(...);
HangoutsChat.Rooms.List request = chat.rooms().list(parameters ...)
public HangoutsChat.Spaces spaces()
The typical use is:
HangoutsChat chat = new HangoutsChat(...);
HangoutsChat.Spaces.List request = chat.spaces().list(parameters ...)
Copyright © 2011–2021 Google. All rights reserved.