本指南介绍了如何对 membership
资源使用 create
方法
来邀请或添加用户、Google 群组或
将 Chat 应用添加到聊天室,也称作创建
会员资格。创建成员资格时,如果指定成员的
关闭自动接受政策,则受邀者会收到邀请,且必须接受聊天室
然后再加入。否则,创建成员资格会将该成员
直接上传到指定的空间
通过
Membership
资源
表示是否会邀请真人用户或 Google Chat 应用;
聊天室中的部分内容,或聊天室中缺失的内容。
前提条件
Python
- Business 或 Enterprise 有权访问以下内容的 Google Workspace 账号: Google Chat。
- 设置您的环境:
- 创建 Google Cloud 项目。
- 配置 OAuth 同意屏幕。
- 启用并配置 Google Chat API,指定一个名称, 图标和说明。
- 安装 Python Google API 客户端库。
-
为桌面应用创建 OAuth 客户端 ID 凭据。为了运行此示例中的示例,
指南中,将凭据保存为
client_secrets.json
的 JSON 文件, 本地目录中。
- 选择支持用户身份验证的授权范围。
Node.js
- Business 或 Enterprise 有权访问以下内容的 Google Workspace 账号: Google Chat。
- 设置您的环境:
- 创建 Google Cloud 项目。
- 配置 OAuth 同意屏幕。
- 启用并配置 Google Chat API,指定一个名称, 图标和说明。
- 安装 Node.js Google API 客户端库。
-
为桌面应用创建 OAuth 客户端 ID 凭据。为了运行此示例中的示例,
指南中,将凭据保存为
client_secrets.json
的 JSON 文件, 本地目录中。
- 选择支持用户身份验证的授权范围。
邀请用户或将用户添加到聊天室
如需邀请聊天室或将用户添加到聊天室,请将以下内容传入您的 请求:
- 指定
chat.memberships
授权范围。 - 调用
create
方法 在membership
资源。 - 将
parent
设置为要在其中创建成员资格的聊天室的资源名称。 - 将
member
设置为users/{user}
,其中{user}
是您要联系的人 为以下任一项创建成员资格:
以下示例展示了如何将用户添加到聊天室:
Python
- 在您的工作目录中,创建一个名为
chat_membership_user_create.py
。 在
chat_membership_user_create.py
中添加以下代码:from google_auth_oauthlib.flow import InstalledAppFlow from googleapiclient.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.memberships"] def main(): ''' Authenticates with Chat API via user credentials, then adds a user to a Chat space by creating a membership. ''' # Authenticate with Google Workspace # and get user authorization. flow = InstalledAppFlow.from_client_secrets_file( 'client_secrets.json', SCOPES) creds = flow.run_local_server() # Build a service endpoint for Chat API. chat = build('chat', 'v1', credentials=creds) # Use the service endpoint to call Chat API. result = chat.spaces().members().create( # The space in which to create a membership. parent = 'spaces/SPACE', # Specify which user the membership is for. body = { 'member': { 'name':'users/USER', 'type': 'HUMAN' } } ).execute() # Prints details about the created membership. print(result) if __name__ == '__main__': main()
在代码中进行以下替换:
SPACE
:聊天室名称。 您可以从spaces.list
方法 或通过聊天室网址发送。USER
:用户 ID。
在您的工作目录中,构建并运行该示例:
python3 chat_membership_user_create.py
Node.js
- 在您的工作目录中,创建一个名为
add-user-to-space.js
的文件。 在
add-user-to-space.js
中添加以下代码:const chat = require('@googleapis/chat'); const {authenticate} = require('@google-cloud/local-auth'); /** * Adds the user to the Chat space. * @return {!Promise<!Object>} */ async function addUserToSpace() { const scopes = [ 'https://www.googleapis.com/auth/chat.memberships', ]; const authClient = await authenticate({scopes, keyfilePath: 'client_secrets.json'}); const chatClient = await chat.chat({version: 'v1', auth: authClient}); return await chatClient.spaces.members.create({ parent: 'spaces/SPACE', requestBody: {member: {name: 'users/USER', type: 'HUMAN'}} }); } addUserToSpace().then(console.log);
在代码中进行以下替换:
SPACE
:聊天室名称,您可以从spaces.list
方法 或通过聊天室网址发送。USER
:用户 ID。
在您的工作目录中,运行该示例:
node add-user-to-space.js
Chat API 会返回
membership
详细说明已创建的用户成员资格
邀请 Google 群组或将群组添加到聊天室
如需邀请 Google 群组或向聊天室添加 Google 群组,请将以下内容传入您的 请求:
- 指定
chat.memberships
授权范围。 - 调用
create
方法 在membership
资源。 - 将
parent
设置为要在其中创建成员资格的聊天室的资源名称。 - 将
groupMember
设置为groups/{group}
,其中{group}
是您要创建的群组 ID 想要为其创建成员资格可以使用 Cloud Identity API。 例如,如果 Cloud Identity API 返回名为groups/123456789
的组,然后设置 从membership.groupMember.name
改为groups/123456789
。
无法将 Google 群组添加到群聊或私信中,只能添加到 命名空间。以下示例展示了如何将群组添加到命名的聊天室:
Python
- 在您的工作目录中,创建一个名为
chat_membership_group_create.py
。 在
chat_membership_group_create.py
中添加以下代码:from google_auth_oauthlib.flow import InstalledAppFlow from googleapiclient.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.memberships"] def main(): ''' Authenticates with Chat API via user credentials, then adds a group to a Chat space by creating a membership. ''' # Authenticate with Google Workspace # and get user authorization. flow = InstalledAppFlow.from_client_secrets_file( 'client_secrets.json', SCOPES) creds = flow.run_local_server() # Build a service endpoint for Chat API. chat = build('chat', 'v1', credentials=creds) # Use the service endpoint to call Chat API. result = chat.spaces().members().create( # The named space in which to create a membership. parent = 'spaces/SPACE', # Specify which group the membership is for. body = { 'groupMember': { 'name':'groups/GROUP', } } ).execute() # Prints details about the created membership. print(result) if __name__ == '__main__': main()
在代码中进行以下替换:
SPACE
:聊天室名称。 您可以从spaces.list
方法 或通过聊天室网址发送。GROUP
:群组 ID。
在您的工作目录中,构建并运行该示例:
python3 chat_membership_group_create.py
Node.js
- 在您的工作目录中,创建一个名为
add-group-to-space.js
的文件。 在
add-group-to-space.js
中添加以下代码:const chat = require('@googleapis/chat'); const {authenticate} = require('@google-cloud/local-auth'); /** * Adds the group to the Chat space. * @return {!Promise<!Object>} */ async function addUserToSpace() { const scopes = [ 'https://www.googleapis.com/auth/chat.memberships', ]; const authClient = await authenticate({scopes, keyfilePath: 'client_secrets.json'}); const chatClient = await chat.chat({version: 'v1', auth: authClient}); return await chatClient.spaces.members.create({ parent: 'spaces/SPACE', requestBody: {groupMember: {name: 'groups/GROUP'}} }); } addUserToSpace().then(console.log);
在代码中进行以下替换:
SPACE
:聊天室名称,您可以从spaces.list
方法 或通过聊天室网址发送。GROUP
:群组 ID。
在您的工作目录中,运行该示例:
node add-group-to-space.js
Chat API 会返回
membership
详细说明已创建的群组成员资格。
将 Chat 扩展应用添加到聊天室
Chat 应用无法将其他应用添加为 空间。将 Chat 扩展应用添加到聊天室 或两个真人用户之间的私信,请在请求中传递以下内容:
- 指定
chat.memberships.app
授权范围。 - 调用
create
方法 针对membership
资源。 - 将
parent
设置为要在其中创建成员资格的聊天室的资源名称。 - 将
member
设置为users/app
;代表调用 Chat API。
以下示例展示了如何将 Chat 应用添加到聊天室:
Python
- 在您的工作目录中,创建一个名为
chat_membership_app_create.py
。 在
chat_membership_app_create.py
中添加以下代码:from google_auth_oauthlib.flow import InstalledAppFlow from googleapiclient.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.memberships.app"] def main(): ''' Authenticates with Chat API via user credentials, then adds the Chat app to a Chat space. ''' # Authenticate with Google Workspace # and get user authorization. flow = InstalledAppFlow.from_client_secrets_file( 'client_secrets.json', SCOPES) creds = flow.run_local_server() # Build a service endpoint for Chat API. chat = build('chat', 'v1', credentials=creds) # Use the service endpoint to call Chat API. result = chat.spaces().members().create( # The space in which to create a membership. parent = 'spaces/SPACE', # Set the Chat app as the entity that gets added to the space. # 'app' is an alias for the Chat app calling the API. body = { 'member': { 'name':'users/app', 'type': 'BOT' } } ).execute() # Prints details about the created membership. print(result) if __name__ == '__main__': main()
在代码中,将
SPACE
替换为聊天室名称, 您可以从spaces.list
方法 或通过聊天室网址发送。在您的工作目录中,构建并运行该示例:
python3 chat_membership_app_create.py
Node.js
- 在您的工作目录中,创建一个名为
add-app-to-space.js
的文件。 在
add-app-to-space.js
中添加以下代码:const chat = require('@googleapis/chat'); const {authenticate} = require('@google-cloud/local-auth'); /** * Adds the app to the Chat space. * @return {!Promise<!Object>} */ async function addAppToSpace() { const scopes = [ 'https://www.googleapis.com/auth/chat.memberships.app', ]; const authClient = await authenticate({scopes, keyfilePath: 'client_secrets.json'}); const chatClient = await chat.chat({version: 'v1', auth: authClient}); return await chatClient.spaces.members.create({ parent: 'spaces/SPACE', requestBody: {member: {name: 'users/app', type: 'BOT'}} }); } addAppToSpace().then(console.log);
在代码中,将
SPACE
替换为聊天室名称, 您可以从spaces.list
方法 或通过聊天室网址发送。在您的工作目录中,运行该示例:
node add-app-to-space.js
Chat API 会返回
membership
详细说明已创建的应用成员资格