設定有初始成員的聊天室

本指南將說明如何使用 setUp() 方法,Space有關設定 Google Chat 的 Google Chat API 資源 空白鍵。設定聊天室會建立聊天室,並將指定使用者加入其中。

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

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

設定聊天室時,請考量下列事項:

  • 呼叫端 (已驗證) 使用者會自動加入聊天室,因此您不需要在要求中指定使用者的會員資格。
  • 建立即時訊息 (DM) 時,如果兩位使用者之間存在即時訊息 系統便會傳回即時訊息否則系統會建立即時訊息。
  • 建立群組即時通訊時 (如果要求中未提供任何成員資格) 已成功加入群組通訊 (例如權限問題),然後 系統可能會建立空白的群組通訊 (包括僅限通話的使用者)。
  • 您無法設定有回覆串的聊天室,也無法新增 Google Workspace 以外的使用者。
  • 在要求中提供的重複會員資格 (包括呼叫使用者) 會遭到篩除,而不會導致要求錯誤。

必要條件

Node.js

Python

Java

Apps Script

設定聊天室

如要設定聊天室,請在要求中傳遞以下內容:

  • 指定 chat.spaces.createchat.spaces 授權範圍。
  • 呼叫 SetUpSpace() 方法。
  • space 傳遞為 Space 的例項,並附上所有必要欄位,例如 displayNamespaceType
  • memberships 做為以下陣列傳遞: Membership 執行個體。請針對每個執行個體執行下列操作:
    • 指定 users/{user} 即可將真人使用者新增為聊天室成員,其中 {user}person{person_id} 從 People API 擷取的 ID user 。舉例來說,如果 People API 使用者 resourceNamepeople/123456789,您可以加入會員,並將 users/123456789 設為 member.name,藉此將使用者加入聊天室。
    • 指定 groups/{group} 即可將群組新增為聊天室成員,其中 {group} 是您要建立成員資格的群組 ID。群組 ID 可透過 Cloud Identity API。 舉例來說, Cloud Identity API 會傳回名為 groups/123456789 的群組,然後設定 membership.groupMember.namegroups/123456789。無法新增 Google 網路論壇 系統會將你加入群組通訊或即時訊息,但只會在已命名的聊天室中加入。

如要在發出呼叫的使用者和其他真人使用者之間建立即時訊息,請指定 您要求中非真人使用者的成員資格

如要在發起通話的使用者和通話應用程式之間建立即時訊息,請設定 space.singleUserBotDm 變更為 true,而且不指定任何成員資格。您只能使用這個方法,透過呼叫應用程式設定私訊。如要將呼叫應用程式新增為空間的成員,或新增兩位使用者之間現有的私訊,請參閱「建立會員資格」一文。

以下範例會建立命名空間,並為兩位使用者 (已驗證使用者和其他使用者) 建立一個會員資格。

Node.js

chat/client-libraries/cloud/set-up-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 set up a named space with one initial member
// 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'
    },
    memberships: [{
      member: {
        // Replace USER_NAME here.
        name: 'users/USER_NAME',
        type: 'HUMAN'
      }
    }]
  };

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

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

main().catch(console.error);

Python

chat/client-libraries/cloud/set_up_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 set_up_space_with_user_cred():
    # Create a client
    client = create_client_with_user_credentials(SCOPES)

    # Initialize request argument(s)
    request = google_chat.SetUpSpaceRequest(
        space = {
            "space_type": 'SPACE',
            # Replace DISPLAY_NAME here.
            "display_name": 'DISPLAY_NAME'
        },
        memberships = [{
            "member": {
                # Replace USER_NAME here.
                "name": 'users/USER_NAME',
                "type_": 'HUMAN'
            }
        }]
    )

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

    # Handle the response
    print(response)

set_up_space_with_user_cred()

Java

chat/client-libraries/cloud/src/main/java/com/google/workspace/api/chat/samples/SetUpSpaceUserCred.java
import com.google.chat.v1.ChatServiceClient;
import com.google.chat.v1.Membership;
import com.google.chat.v1.SetUpSpaceRequest;
import com.google.chat.v1.Space;
import com.google.chat.v1.User;

// This sample shows how to set up a named space with one initial member with
// user credential.
public class SetUpSpaceUserCred {

  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))) {
      SetUpSpaceRequest.Builder request = SetUpSpaceRequest.newBuilder()
        .setSpace(Space.newBuilder()
          .setSpaceType(Space.SpaceType.SPACE)
          // Replace DISPLAY_NAME here.
          .setDisplayName("DISPLAY_NAME"))
        .addAllMemberships(ImmutableList.of(Membership.newBuilder()
          .setMember(User.newBuilder()
            // Replace USER_NAME here.
            .setName("users/USER_NAME")
            .setType(User.Type.HUMAN)).build()));
      Space response = chatServiceClient.setUpSpace(request.build());

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

Apps Script

chat/advanced-service/Main.gs
/**
 * This sample shows how to set up a named space with one initial member 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 setUpSpaceUserCred() {
  // Initialize request argument(s)
  const space = {
    spaceType: 'SPACE',
    // TODO(developer): Replace DISPLAY_NAME here
    displayName: 'DISPLAY_NAME'
  };
  const memberships = [{
    member: {
      // TODO(developer): Replace USER_NAME here
      name: 'users/USER_NAME',
      // User type for the membership
      type: 'HUMAN'
    }
  }];

  // Make the request
  const response = Chat.Spaces.setup({ space: space, memberships: memberships });

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

如要執行範例,請替換以下內容:

  • DISPLAY_NAME:新空間的顯示名稱。
  • USER_NAME:要加入其他使用者的 ID 會員。

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