刪除訊息中的回應

本指南說明如何在 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
    

如果成功,回應主體會是空白的,表示回應已刪除。