设置包含初始成员的聊天室

本指南将介绍如何使用 setUp() 方法(针对 Google Chat API 的 Space 资源)来设置 Google Chat 空间。设置聊天室会创建聊天室并向其中添加指定用户。

Space 资源表示用户和 Chat 应用可以发送消息、共享文件和协作的场所。聊天室分为以下几种类型:

  • 私信 (DM) 是指两位用户或一位用户与 Chat 应用。
  • 群聊是三位或更多用户之间的对话, 聊天应用。
  • 命名聊天室是用户发送消息、共享文件和协作的永久性场所。

设置聊天室时,请考虑以下事项:

  • 系统会自动将发起调用(经过身份验证)的用户添加到聊天室,因此您可以 就无需在请求中指定用户的成员资格。
  • 创建私信 (DM) 时,如果两位用户之间存在私信, 系统会返回私信否则,系统会创建直接消息。
  • 创建群聊时,如果请求中提供的所有成员资格都未成功添加到群聊中(例如,存在权限问题),则系统可能会创建一个空群聊(仅包含发起群聊的用户)。
  • 您无法设置包含“话题式回复”的聊天室,也无法添加 Google Workspace。
  • 请求中提供的重复成员资格(包括发起调用的用户) 而不是导致请求错误

前提条件

Node.js

Python

Java

Apps 脚本

设置聊天室

如需设置聊天室,请在请求中传递以下内容:

  • 指定 chat.spaces.createchat.spaces 授权范围。
  • 调用 SetUpSpace() 方法。
  • space 作为 Space 所有必填字段,例如 displayNamespaceType
  • memberships 作为 Membership 实例的数组传递。对于每个实例:
    • 指定 users/{user} 以将真人用户添加为聊天室成员,其中 {user} 是 People API 中的 person{person_id},或 Directory API 中的 user 的 ID。例如,如果 People API 人员 resourceNamepeople/123456789,您可以通过添加 users/123456789 作为 member.name 的成员资格,将该用户添加到聊天室。
    • 指定 groups/{group} 以将群组添加为聊天室成员,其中 {group} 是您要为其创建成员资格的群组 ID。您可以使用 Cloud Identity API 检索群组的 ID。例如,如果 Cloud Identity API 返回名称为 groups/123456789 的群组,则将 membership.groupMember.name 设置为 groups/123456789。您无法将 Google 群组添加到群聊或私信中,只能添加到命名聊天室中。

如需在发起通话的用户与其他真人用户之间创建私信,请在请求中指定真人用户的成员资格。

如需在发起通话的用户和发起通话的应用之间创建私信,请将 space.singleUserBotDmtrue,并且不指定任何成员资格。您只能使用此方法通过通话应用设置私信。如需将通话应用添加为聊天室的成员或两个真人用户之间的现有私信的成员,请参阅创建成员资格

以下示例会创建一个命名聊天室,并为两名真人用户(经过身份验证的用户和另一名用户)创建一个聊天室成员资格。

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 脚本

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