建立聊天室

本指南說明如何在 Google Chat API 的 Space 資源上使用 create() 方法,建立命名空間。

Space 資源代表使用者和 Chat 應用程式可用於傳送訊息、共用檔案和協作的空間。聊天室分為以下幾類:

  • 即時訊息 (DM) 是指兩位使用者或使用者之間的對話, Chat 應用程式。
  • 群組通訊是指三位以上使用者與 Chat 應用程式之間的對話。
  • 命名聊天室是持續存在的空間,可供使用者傳送訊息、分享檔案和協作。

命名聊天室是使用者傳送訊息、共用檔案和協作的場所。已命名的聊天室可以包含 Chat 擴充應用程式。命名聊天室包含未命名群組對話和即時訊息所沒有的額外功能,例如聊天室管理員可套用管理設定、新增說明,以及新增或移除使用者和應用程式。建立命名聊天室後,只有經過驗證的使用者是該聊天室的成員。聊天室沒有 包含其他人或應用程式甚至包括 Chat 應用程式 建立應用程式如要將成員新增至聊天室,請參閱「建立會員方案」。

如要建立有多位成員的已命名聊天室 (未命名的群組通訊), 或兩位以上的使用者,或兩人之間的即時訊息對話,或 呼叫 Chat API:設定聊天室

必要條件

Node.js

Python

Java

Apps Script

以使用者身分建立已命名聊天室

如要使用使用者驗證建立命名空間,請在要求中傳遞下列資訊:

  • 指定 chat.spaces.createchat.spaces 授權範圍。
  • CreateSpace() 方法傳送 space 做為 Space 包含下列欄位:
    • spaceType已設為 SPACE
    • displayName 已設為向使用者顯示的聊天室名稱。
    • 您可以視需要設定其他屬性,例如:
      • spaceDetails:向使用者顯示的說明,以及聊天室的規範。
      • predefinedPermissionSettings:聊天室的預先定義權限。舉例來說,您可以設定讓所有成員或僅限聊天室管理員發布訊息。

以下說明如何建立命名空間:

Node.js

chat/client-libraries/cloud/create-space-user-cred.js
import {createClientWithUserCredentials} from './authentication-utils.js';

const USER_AUTH_OAUTH_SCOPES = ['https://www.googleapis.com/auth/chat.spaces.create'];

// This sample shows how to create a named space with user credential
async function main() {
  // Create a client
  const chatClient = await createClientWithUserCredentials(USER_AUTH_OAUTH_SCOPES);

  // Initialize request argument(s)
  const request = {
    space: {
      spaceType: 'SPACE',
      // Replace DISPLAY_NAME here.
      displayName: 'DISPLAY_NAME'
    }
  };

  // Make the request
  const response = await chatClient.createSpace(request);

  // Handle the response
  console.log(response);
}

main().catch(console.error);

Python

chat/client-libraries/cloud/create_space_user_cred.py
from authentication_utils import create_client_with_user_credentials
from google.apps import chat_v1 as google_chat

SCOPES = ["https://www.googleapis.com/auth/chat.spaces.create"]

def create_space_with_user_cred():
    # Create a client
    client = create_client_with_user_credentials(SCOPES)

    # Initialize request argument(s)
    request = google_chat.CreateSpaceRequest(
        space = {
            "space_type": 'SPACE',
            # Replace DISPLAY_NAME here.
            "display_name": 'DISPLAY_NAME'
        }
    )

    # Make the request
    response = client.create_space(request)

    # Handle the response
    print(response)

create_space_with_user_cred()

Java

chat/client-libraries/cloud/src/main/java/com/google/workspace/api/chat/samples/CreateSpaceUserCred.java
import com.google.chat.v1.ChatServiceClient;
import com.google.chat.v1.CreateSpaceRequest;
import com.google.chat.v1.Space;

// This sample shows how to create space with user credential.
public class CreateSpaceUserCred {

  private static final String SCOPE =
    "https://www.googleapis.com/auth/chat.spaces.create";

  public static void main(String[] args) throws Exception {
    try (ChatServiceClient chatServiceClient =
        AuthenticationUtils.createClientWithUserCredentials(
          ImmutableList.of(SCOPE))) {
      CreateSpaceRequest.Builder request = CreateSpaceRequest.newBuilder()
        .setSpace(Space.newBuilder()
          .setSpaceType(Space.SpaceType.SPACE)
          // Replace DISPLAY_NAME here.
          .setDisplayName("DISPLAY_NAME"));
      Space response = chatServiceClient.createSpace(request.build());

      System.out.println(JsonFormat.printer().print(response));
    }
  }
}

Apps Script

chat/advanced-service/Main.gs
/**
 * This sample shows how to create space with user credential
 * 
 * It relies on the OAuth2 scope 'https://www.googleapis.com/auth/chat.spaces.create'
 * referenced in the manifest file (appsscript.json).
 */
function createSpaceUserCred() {
  // Initialize request argument(s)
  const space = {
    spaceType: 'SPACE',
    // TODO(developer): Replace DISPLAY_NAME here
    displayName: 'DISPLAY_NAME'
  };

  // Make the request
  const response = Chat.Spaces.create(space);

  // Handle the response
  console.log(response);
}

以 Chat 應用程式的形式建立已命名聊天室

應用程式驗證需要一次性的管理員核准

如何在符合以下條件的聊天室中邀請或新增使用者: 應用程式驗證,通過 包括:

  • 指定 chat.app.spaces.createchat.app.spaces 授權範圍。
  • Space 資源上呼叫 create 方法
  • 組合 spaceTypeSPACE
  • displayName 設為使用者可見的聊天室名稱。在以下範例中:displayName 已設為 API-made
  • 使用 customer 欄位指定 Google Workspace 網域的客戶 ID。
  • 你也可以設定其他聊天室屬性,例如 spaceDetails (使用者可以看到的聊天室說明和一組規範)。

建立 API 金鑰

如要呼叫開發人員預覽版 API 方法,您必須使用 API 探索文件的非公開開發人員預覽版。您必須傳送 API 金鑰,才能驗證要求。

如要建立 API 金鑰,請開啟應用程式的 Google Cloud 專案,然後執行下列操作:

  1. 在 Google Cloud 控制台中,前往「選單」圖示 > API 與服務 >「憑證」

    前往「憑證」

  2. 依序按一下「建立憑證」 「API 金鑰」。
  3. 系統會顯示新的 API 金鑰。
    • 按一下「複製」 即可複製 API 金鑰,以便在應用程式程式碼中使用。您也可以在專案憑證的「API 金鑰」部分找到 API 金鑰。
    • 按一下「限制金鑰」,即可更新進階設定並限制 API 金鑰的使用方式。詳情請參閱「套用 API 金鑰限制」。

編寫呼叫 Chat API 的指令碼

以下說明如何建立命名空間:

Python

  1. 在工作目錄中建立名為 chat_space_create_named_app.py 的檔案。
  2. chat_space_create_named_app.py 中加入以下程式碼:

    from google.oauth2 import service_account
    from apiclient.discovery import build
    
    # Define your app's authorization scopes.
    # When modifying these scopes, delete the file token.json, if it exists.
    SCOPES = ["https://www.googleapis.com/auth/chat.app.spaces.create"]
    
    def main():
        '''
        Authenticates with Chat API using app authentication,
        then creates a Chat space.
        '''
    
        # Specify service account details.
        creds = (
            service_account.Credentials.from_service_account_file('credentials.json')
            .with_scopes(SCOPES)
        )
    
        # Build a service endpoint for Chat API.
        chat = build('chat', 'v1', credentials=creds, discoveryServiceUrl='https://chat.googleapis.com/$discovery/rest?version=v1&labels=DEVELOPER_PREVIEW&key=API_KEY')
    
        # Use the service endpoint to call Chat API.
        result = chat.spaces().create(
    
          # Details about the space to create.
          body = {
    
            # To create a named space, set spaceType to SPACE.
            'spaceType': 'SPACE',
    
            # The user-visible name of the space.
            'displayName': 'API-made',
    
            # The customer ID of the Workspace domain.
            'customer': 'CUSTOMER'
          }
    
          ).execute()
    
        # Prints details about the created space.
        print(result)
    
    if __name__ == '__main__':
        main()
    
  3. 在程式碼中,請替換下列內容:

    • API_KEY:您為了建構而建立的 API 金鑰 Chat API 的服務端點

    • CUSTOMER:以 customer/{customer} 格式表示的空間網域客戶 ID,其中 {customer}Admin SDK 客戶資源中的 ID。如要在與 Chat 應用程式相同的 Google Workspace 機構中建立聊天室,請使用 customers/my_customer

  4. 在工作目錄中建構並執行範例:

    python3 chat_space_create_named_app.py
    

在 Google Chat 中開啟聊天室

如要前往聊天室,請使用聊天室的資源 ID 建構聊天室的網址。您可以在 Google Chat 回應主體中,從聊天室 name 中找到資源 ID。舉例來說,如果聊天室的 namespaces/1234567,您可以使用以下網址前往聊天室:https://mail.google.com/chat/u/0/#chat/space/1234567