แสดงรายการความรู้สึกสำหรับข้อความ

คำแนะนำนี้จะอธิบายวิธีใช้เมธอด list ในทรัพยากร Reaction ของ Google Chat API เพื่อแสดงรายการความรู้สึกของข้อความ เช่น 👍, 🚲 และ 🌞

แหล่งข้อมูล Reaction แสดงถึงอีโมจิที่ผู้คนใช้แสดงความรู้สึกต่อข้อความได้ เช่น 👍, 🚲 และ 🌞

ข้อกำหนดเบื้องต้น

Python

  • Python 3.6 ขึ้นไป
  • เครื่องมือการจัดการแพ็กเกจ pip
  • ไลบรารีของไคลเอ็นต์ Google ล่าสุดสำหรับ Python หากต้องการติดตั้งหรืออัปเดต ให้เรียกใช้คำสั่งต่อไปนี้ในอินเทอร์เฟซบรรทัดคำสั่ง

    pip3 install --upgrade google-api-python-client google-auth-oauthlib
    
  • โปรเจ็กต์ Google Cloud ที่เปิดใช้และกำหนดค่า Google Chat API โปรดดูขั้นตอนที่หัวข้อสร้างแอป Google Chat
  • กำหนดค่าการให้สิทธิ์สำหรับแอป Chat แล้ว การแสดงความรู้สึกตามรายชื่อต้องมีการตรวจสอบสิทธิ์ผู้ใช้ที่มีขอบเขตการให้สิทธิ์ chat.messages.reactions.readonly, chat.messages.reactions, chat.messages.readonly หรือ chat.messages

แสดงรายการรีแอ็กชัน

หากต้องการแสดงรีแอ็กชันของข้อความ ให้ส่งข้อมูลต่อไปนี้ในคำขอ

  • ระบุขอบเขตการให้สิทธิ์ chat.messages.reactions.readonly, chat.messages.reactions, chat.messages.readonly หรือ chat.messages
  • เรียกใช้ [list method]/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 ใน Chat API หรือจาก URL ของพื้นที่ทำงาน
    • MESSAGE: ชื่อข้อความที่คุณจะได้รับจากเนื้อหาการตอบกลับที่แสดงหลังจากสร้างข้อความแบบไม่พร้อมกันด้วย Chat API หรือด้วยชื่อที่กำหนดเองที่กำหนดให้กับข้อความเมื่อสร้าง
  4. สร้างและเรียกใช้ตัวอย่างในไดเรกทอรีการทำงาน

    python3 chat_reactions_list.py
    

Chat API จะแสดงผลอาร์เรย์ของรีแอ็กชันที่มีเลขหน้า