列出訊息回應

本指南說明如何針對 Reaction 資源使用 list 方法 Google Chat API 的快速指令,以便列出訊息的回應,例如 👍?、🚲? 與 Θ。

Reaction 項資源 所代表的表情符號,例如 👍?、🚲? 和 CANNOT TRANSLATE

必要條件

Python

  • Python 3.6 以上版本
  • pip 套件管理工具
  • 最新的 Google 用戶端程式庫。安裝或更新 在指令列介面中執行下列指令:
    pip3 install --upgrade google-api-python-client google-auth-oauthlib
    

清單回應

如要列出訊息的回應,請在要求中傳遞以下內容:

  • 指定 chat.messages.reactions.readonlychat.messages.reactionschat.messages.readonlychat.messages 授權範圍。
  • 在 [list 方法]/workspace(/chat/api/reference/rest/v1/spaces.messages.reactions/list) 的 Reaction 資源

以下範例會列出特定訊息的回應:

Python

  1. 在工作目錄中,建立名為 chat_reactions_list.py 的檔案。
  2. chat_reactions_list.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.readonly"]
    
    def main():
        '''
        Authenticates with Chat API via user credentials,
        then lists reactions 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().list(
    
            # The message to list reactions 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'
    
        ).execute()
    
        # Prints details about the created reactions.
        print(result)
    
    if __name__ == '__main__':
        main()
    
  3. 請在程式碼中替換下列內容:

    • SPACE:聊天室名稱,您可以從中取得 這個 spaces.list 方法 或聊天室網址傳送
    • MESSAGE:訊息名稱,您可以取得 建立非同步訊息後傳回的回應主體 透過 Chat API 或 自訂名稱 是在建立訊息時指派的
  4. 在工作目錄中建構並執行範例:

    python3 chat_reactions_list.py
    

Chat API 會傳回分頁陣列。