本指南介绍了如何在 Google Chat API 的 Message
资源上使用 get
方法,以返回有关文本或卡片消息的详细信息。
Message
资源表示 Google Chat 中的文本或卡片消息。您可以通过调用相应的方法,在 Google Chat API 中对消息执行 create
、get
、update
或 delete
操作。如需详细了解文本和卡片消息,请参阅 Google Chat 消息概览。
前提条件
Python
- Python 3.6 或更高版本
- pip 软件包管理工具
适用于 Python 的最新 Google 客户端库。如需安装或更新这些软件包,请在命令行界面中运行以下命令:
pip3 install --upgrade google-api-python-client google-auth-httplib2 google-auth-oauthlib oauth2client
已发布的 Chat 应用。如需创建和发布 Chat 应用,请参阅构建 Google Chat 应用。
为 Chat 应用配置授权。获取消息支持以下两种身份验证方法:
接收用户身份验证消息
如需使用用户身份验证获取消息的详细信息,请在请求中传递以下内容:
- 指定
chat.messages.readonly
或chat.messages
授权范围。 - 对
Message
资源调用get
方法。 - 将
name
设置为要获取的消息的资源名称。
以下示例会收到一条包含用户身份验证的消息:
Python
- 在您的工作目录中,创建一个名为
chat_message_get_user.py
的文件。 在
chat_message_get_user.py
中添加以下代码:import os.path from google.auth.transport.requests import Request from google.oauth2.credentials import Credentials from google_auth_oauthlib.flow import InstalledAppFlow from googleapiclient.discovery import build from googleapiclient.errors import HttpError # 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.messages.readonly"] def main(): ''' Authenticates with Chat API via user credentials, then gets a message. ''' # 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().messages().get( # The message to get. # # Replace SPACE with a space name. # Obtain the space name from the spaces resource of Chat API, # or from a space's URL. # # Replace MESSAGE with a message name. # Obtain the message name from the response body returned # after creating a message asynchronously with Chat REST API. name = 'spaces/SPACE/messages/MESSAGE' ).execute() # Prints details about the created membership. print(result) if __name__ == '__main__': main()
在代码中,替换以下内容:
SPACE
:聊天室名称,可通过 Chat API 中的spaces.list
方法或聊天室的网址获取。MESSAGE
:消息名称,您可以从使用 Chat API 异步创建消息后返回的响应正文中获取,也可以从创建消息时为消息指定的自定义名称获取该名称。
在您的工作目录中,构建并运行示例:
python3 chat_message_get_user.py
Chat API 会返回 Message
的实例,该实例详细说明了指定消息。
接收应用身份验证消息
如需使用应用身份验证获取消息的详细信息,请在请求中传递以下内容:
- 指定
chat.bot
授权范围。 - 对
Message
资源调用get
方法。 - 将
name
设置为要获取的消息的资源名称。
以下示例会收到一条包含应用身份验证的消息:
Python
- 在您的工作目录中,创建一个名为
chat_get_message_app.py
的文件。 在
chat_get_message_app.py
中添加以下代码:from httplib2 import Http from oauth2client.service_account import ServiceAccountCredentials from apiclient.discovery import build # Specify required scopes. SCOPES = ['https://www.googleapis.com/auth/chat.bot'] # Specify service account details. CREDENTIALS = ServiceAccountCredentials.from_json_keyfile_name( 'credentials.json', SCOPES) # Build the URI and authenticate with the service account. chat = build('chat', 'v1', http=CREDENTIALS.authorize(Http())) # Get a Chat message. result = chat.spaces().messages().get( # The message to get. # # Replace SPACE with a space name. # Obtain the space name from the spaces resource of Chat API, # or from a space's URL. # # Replace MESSAGE with a message name. # Obtain the message name from the response body returned # after creating a message asynchronously with Chat REST API. name='spaces/SPACE/messages/MESSAGE' ).execute() # Print Chat API's response in your command line interface. print(result)
在代码中,替换以下内容:
SPACE
:消息所在聊天室的name
,可通过 Chat API 中的spaces.list
方法或聊天室的网址获取。MESSAGE
:消息名称,您可以从使用 Chat API 异步创建消息后返回的响应正文中获取,也可以从创建消息时为消息指定的自定义名称获取该名称。
在您的工作目录中,构建并运行示例:
python3 chat_get_message_app.py
Chat API 会返回 Message
的实例,该实例详细说明了指定消息。