从消息中删除回应

本指南介绍了如何在 Google Chat API 的 Reaction 资源中使用 delete 方法删除消息中的回应,例如 👍?、🚲? 和 🌞?。删除回应不会删除相应消息。

Reaction 资源表示用户可以用来回应消息的表情符号,例如 👍?、🚲? 和 🌞?。

前提条件

Python

  • Python 3.6 或更高版本
  • pip 软件包管理工具
  • 适用于 Python 的最新 Google 客户端库。如需安装或更新它们,请在命令行界面中运行以下命令:

    pip3 install --upgrade google-api-python-client google-auth-oauthlib
    
  • 一个启用了并配置了 Google Chat API 的 Google Cloud 项目。如需了解相关步骤,请参阅构建 Google Chat 应用
  • 已为 Chat 应用配置授权。如需删除回应,需要通过 chat.messages.reactionschat.messages 授权范围进行用户身份验证

删除回应

要从消息中删除回应,请在请求中传递以下内容:

  • 请指定 chat.messages.reactionschat.messages 授权范围。
  • Reaction 资源调用 delete 方法
  • name 设置为要删除的回应的资源名称。

以下示例会删除消息中的 😀? 回应:

Python

  1. 在您的工作目录中,创建一个名为 chat_reaction_delete.py 的文件。
  2. chat_reaction_delete.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"]
    
    def main():
        '''
        Authenticates with Chat API via user credentials,
        then deletes 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().delete(
    
            # The reaction to delete.
            #
            # 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.
            #
            # Replace REACTION with a reaction name.
            # Obtain the reaction name from the reaction resource of Chat API.
            name = 'spaces/SPACE/messages/MESSAGE/reactions/REACTION'
    
        ).execute()
    
    if __name__ == '__main__':
        main()
    
  3. 在代码中,替换以下内容:

    • SPACE:聊天室名称,可通过 Chat API 中的 spaces.list 方法或聊天室网址获取。
    • MESSAGE:消息名称,您可以从通过 Chat API 异步创建消息后返回的响应正文中获取,也可以使用在创建消息时分配给该消息的自定义名称获取。
    • REACTION:回应名称,可通过 Chat API 中的 spaces.messages.reactions.list 方法获取,也可从通过 Chat API 异步创建回应后返回的响应正文中获取。
  4. 在您的工作目录中,构建并运行示例:

    python3 chat_reaction_delete.py
    

如果成功,响应正文将为空,这表示该回应已被删除。