在 Google Chat 聊天室中更新用户的成员资格

本指南将介绍如何使用 update() (针对 Google Chat API 的 Membership 资源)方法,用于更改属性 有关成员资格的信息,例如将聊天室成员更改为聊天室管理员,或更改聊天室 将聊天室管理员授予聊天室成员

如果您是 Google Workspace 管理员,则可以调用 update() 方法来更新 Google Workspace 组织中任何聊天室的成员资格。

通过 Membership 资源 表示是否会邀请真人用户或 Google Chat 应用; 聊天室中的部分内容,或聊天室中缺失的内容。

前提条件

Node.js

<ph type="x-smartling-placeholder">

更新会员资格

如需更新聊天室会员资格,请在请求中传递以下内容:

  • 指定授权范围: <ph type="x-smartling-placeholder">
      </ph>
    • 借助用户身份验证, 指定 chat.memberships 授权范围。
    • 包含 应用身份验证 (在开发者预览版中提供), 指定 chat.app.memberships 授权范围。更新 成员资格与应用身份验证,则只能在以下位置更新成员资格: Chat 应用创建的聊天室。 应用身份验证需要一次性 管理员批准
  • 调用 UpdateMembership() 方法。
  • membership 作为 Membership 替换为以下内容:
    • name 字段设置为要更新的成员资格,其中包含聊天室 ID 和成员 ID。
    • 将要更新的会员资格字段设置为新值。
  • 传递 updateMask 可指定要更新的成员资格的各个方面, 包括:
    • role:用户在 Chat 聊天室中的角色,决定了他们在聊天室中可以执行的操作。可能的值包括:
      • ROLE_MEMBER:聊天室的成员。该用户拥有基本权限 比如向聊天室发送消息在 1 对 1 对话和未命名的群组对话中,所有人都有此角色。
      • ROLE_MANAGER:聊天室管理员。用户拥有所有基本权限,外加 拥有管理权限,让他们可以管理聊天室,例如添加或 移除成员。仅在 spaceTypeSPACE(命名聊天室)的聊天室中受支持。

将聊天室常规成员设为聊天室管理员

以下示例使用 用户身份验证 指定 role,将普通聊天室成员设为聊天室管理员: ROLE_MANAGER:

Node.js

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

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

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

  // Initialize request argument(s)
  const request = {
    membership: {
      // Replace SPACE_NAME and MEMBER_NAME here
      name: 'spaces/SPACE_NAME/members/MEMBER_NAME',
      // Replace ROLE_NAME here with ROLE_MEMBER or ROLE_MANAGER
      role: 'ROLE_NAME'
    },
    updateMask: {
      // The field paths to update.
      paths: ['role']
    }
  };

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

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

main().catch(console.error);

如需运行该示例,请替换以下内容:

  • SPACE_NAME:聊天室的 ID name。 您可以通过调用 ListSpaces() 方法或从聊天室的网址中获取 ID。
  • MEMBER_NAME:成员资格的 name 中的 ID。您可以通过调用 ListMemberships() 方法来获取 ID,也可以从使用 Chat API 异步创建会员资格后返回的响应正文中获取 ID。
  • ROLE_NAME:更新后的角色 ROLE_MANAGER

Google Chat API 会将指定的成员资格更新为聊天室管理员,并返回 Membership 的实例。

将聊天室管理员设为普通成员

以下示例使用 用户身份验证 指定 role,将聊天室管理员设为常规聊天室成员 ROLE_MEMBER:

Node.js

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

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

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

  // Initialize request argument(s)
  const request = {
    membership: {
      // Replace SPACE_NAME and MEMBER_NAME here
      name: 'spaces/SPACE_NAME/members/MEMBER_NAME',
      // Replace ROLE_NAME here with ROLE_MEMBER or ROLE_MANAGER
      role: 'ROLE_NAME'
    },
    updateMask: {
      // The field paths to update.
      paths: ['role']
    }
  };

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

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

main().catch(console.error);

如需运行该示例,请替换以下内容:

  • SPACE_NAME:聊天室的 ID name。 您可以通过调用 ListSpaces() 方法或从聊天室的网址中获取 ID。
  • MEMBER_NAME:会员资格的 ID name。 您可以通过调用 ListMemberships() 方法来获取 ID,也可以从使用 Chat API 异步创建会员资格后返回的响应正文中获取 ID。
  • ROLE_NAME:更新后的角色,ROLE_MEMBER

Google Chat API 会将指定的成员资格更新为聊天室管理员,并返回 实例 Membership

通过 Chat 应用将普通聊天室成员设为聊天室管理员

应用身份验证需要一次性 管理员批准

创建 API 密钥

如需调用 Developer Preview API 方法,您必须使用相应 API 发现文档的非公开开发者预览版。要对请求进行身份验证,您必须传递 API 密钥。

如需创建 API 密钥,请打开应用的 Google Cloud 项目并执行以下操作:

  1. 在 Google Cloud 控制台中,点击“菜单”图标 &gt; API 和服务 &gt; 凭据

    进入“凭据”页面

  2. 点击创建凭据 &gt; API 密钥
  3. 此时将显示您的新 API 密钥。
    • 点击“复制”图标 复制 API 密钥,以便在应用代码中使用。您也可以在项目凭据的“API 密钥”部分找到该 API 密钥。
    • 点击限制密钥可更新高级设置并限制 API 密钥的使用。如需了解详情,请参阅应用 API 密钥限制

编写用于调用 Chat API 的脚本

以下示例使用应用身份验证调用 Chat API,通过在指定更新后的成员资格属性的 body 中将 role 指定为 ROLE_MANAGER,将普通聊天室成员设为聊天室管理员:

<ph type="x-smartling-placeholder">

Python

  1. 在您的工作目录中,创建一个名为 chat_membership_update_to_manager_app.py 的文件。
  2. chat_membership_update_to_manager_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.memberships"]
    
    def main():
        '''
        Authenticates with Chat API using app authentication,
        then updates a specified space member to change
        it from a regular member to a space manager.
        '''
    
        # 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().members().patch(
    
            # The membership to update, and the updated role.
            #
            # Replace SPACE with a space name.
            # Obtain the space name from the spaces resource of Chat API,
            # or from a space's URL.
            #
            # Replace MEMBERSHIP with a membership name.
            # Obtain the membership name from the membership of Chat API.
            name='spaces/SPACE/members/MEMBERSHIP',
            updateMask='role',
            body={'role': 'ROLE_MANAGER'}
    
          ).execute()
    
        # Prints details about the updated membership.
        print(result)
    
    if __name__ == '__main__':
        main()
    
  3. 在代码中进行以下替换:

    • API_KEY:您为了构建作业而创建的 API 密钥 Chat API 的服务端点。

    • SPACE:聊天室名称,您可以通过 Chat API 中的 spaces.list 方法或聊天室的网址获取该名称。

    • MEMBERSHIP:成员资格名称。 您可以从 spaces.members.list 方法

  4. 在工作目录中,构建并运行示例:

    python3 chat_membership_update_to_manager_app.py

将聊天室管理员设为 Chat 应用的常规成员

应用身份验证需要一次性 管理员批准

创建 API 密钥

如需调用 Developer Preview API 方法,您必须使用相应 API 发现文档的非公开开发者预览版。要对请求进行身份验证,您必须传递 API 密钥。

如需创建 API 密钥,请打开应用的 Google Cloud 项目并执行以下操作:

  1. 在 Google Cloud 控制台中,点击“菜单”图标 &gt; API 和服务 &gt; 凭据

    进入“凭据”页面

  2. 点击创建凭据 &gt; API 密钥
  3. 此时将显示您的新 API 密钥。
    • 点击“复制”图标 复制 API 密钥,以便在应用代码中使用。您也可以在项目凭据的“API 密钥”部分找到该 API 密钥。
    • 点击限制密钥可更新高级设置并限制 API 密钥的使用。如需了解详情,请参阅应用 API 密钥限制

编写用于调用 Chat API 的脚本

以下示例使用应用身份验证调用 Chat API,通过在指定更新后的成员资格属性的 body 中将 role 指定为 ROLE_MEMBER,将聊天室管理员设为常规聊天室成员:

Python

  1. 在您的工作目录中,创建一个名为 chat_membership_update_to_member_app.py 的文件。
  2. chat_membership_update_to_member_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.memberships"]
    
    def main():
        '''
        Authenticates with Chat API via user credentials,
        then updates a specified space member to change
        it from a regular member to a space manager.
        '''
    
        # 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().members().patch(
    
            # The membership to update, and the updated role.
            #
            # Replace SPACE with a space name.
            # Obtain the space name from the spaces resource of Chat API,
            # or from a space's URL.
            #
            # Replace MEMBERSHIP with a membership name.
            # Obtain the membership name from the membership of Chat API.
            name='spaces/SPACE/members/MEMBERSHIP',
            updateMask='role',
            body={'role': 'ROLE_MEMBER'}
    
          ).execute()
    
        # Prints details about the updated membership.
        print(result)
    
    if __name__ == '__main__':
        main()
    
  3. 在代码中,替换以下内容:

    • API_KEY:您创建的用于构建 Chat API 服务端点的 API 密钥。

    • SPACE:聊天室名称,您可以通过 Chat API 中的 spaces.list 方法或聊天室的网址获取该名称。

    • MEMBERSHIP:成员资格名称。 您可以从 spaces.members.list 方法

  4. 在工作目录中,构建并运行示例:

    python3 chat_membership_update_to_member_app.py

以 Google Workspace 管理员身份更新成员资格

如果您是 Google Workspace 管理员,可以致电 update() 为 Google Workspace 中的任何聊天室更新成员资格的方法 组织。

如需以 Google Workspace 管理员身份调用此方法,请执行以下操作:

  • 使用用户身份验证调用 方法,并指定 授权范围 支持使用 管理员权限
  • 在请求中,将查询参数 useAdminAccess 指定为 true

有关详情和示例,请参阅 以 Google Workspace 管理员的身份管理 Google Chat 聊天室