本指南介绍了如何对 Reaction
资源使用 create
方法
来为消息添加回应,例如 👍?、🚲? 和 🌞?。
通过
Reaction
资源
代表用户可以用来回应信息的表情符号,例如 👍?、🚲?,
和 🌞?。
前提条件
Python
- Business 或 Enterprise 有权访问以下内容的 Google Workspace 账号: Google Chat。
- 设置您的环境:
- 创建 Google Cloud 项目。
- 配置 OAuth 同意屏幕。
- 启用并配置 Google Chat API,指定一个名称, 图标和说明。
- 安装 Python Google API 客户端库。
-
为桌面应用创建 OAuth 客户端 ID 凭据。为了运行此示例中的示例,
指南中,将凭据保存为
client_secrets.json
的 JSON 文件, 本地目录中。
- 选择支持用户身份验证的授权范围。
为消息添加回应
要创建对消息的回应,请将以下内容传入您的 请求:
- 指定
chat.messages.reactions.create
、chat.messages.reactions
或chat.messages
授权范围。 - 调用
create
方法 在Reaction
资源。 - 将
parent
设置为要回应的消息的资源名称。 - 将
body
(请求正文)设置为Reaction
其中unicode
字段是由 Unicode 表示的标准表情符号 字符串。
以下示例对带有 😀? 表情符号的消息作出回应:
Python
- 在您的工作目录中,创建一个名为
chat_reaction_create.py
的文件。 在
chat_reaction_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.messages.reactions.create"] def main(): ''' Authenticates with Chat API via user credentials, then creates a reaction to 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().reactions().create( # The message to create a reaction to. # # 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. parent = 'spaces/SPACE/messages/MESSAGE', # The reaction to the message. body = { 'emoji': { # A standard emoji represented by a unicode string. 'unicode': '😀' } } ).execute() # Prints details about the created reaction. print(result) if __name__ == '__main__': main()
在代码中进行以下替换:
SPACE
:聊天室的name
消息已发布,您可以从spaces.list
方法 或通过聊天室网址发送。MESSAGE
:消息名称,您可以获取 从异步创建消息后返回的响应正文中 或者通过 自定义名称 分配给消息。
在您的工作目录中,构建并运行该示例:
python3 chat_reaction_create.py
Chat API 会返回
Reaction
详细说明形成的反应。