เพิ่มความรู้สึกที่มีต่อข้อความ

คำแนะนำนี้จะอธิบายวิธีใช้เมธอด create ในทรัพยากร 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.create, chat.messages.reactions หรือ chat.messages

เพิ่มความรู้สึกต่อข้อความ

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

  • ระบุขอบเขตการให้สิทธิ์ chat.messages.reactions.create, chat.messages.reactions หรือ chat.messages
  • เรียกเมธอด create ในทรัพยากร Reaction
  • ตั้ง parent เป็นชื่อทรัพยากรของข้อความที่จะแสดงความรู้สึก
  • ตั้งค่า body (เนื้อหาคำขอ) เป็นอินสแตนซ์ของ Reaction ซึ่งช่อง unicode เป็นอีโมจิมาตรฐานที่แสดงด้วยสตริง Unicode

ตัวอย่างต่อไปนี้แสดงความรู้สึกต่อข้อความที่มีอีโมจิ 😊

Python

  1. สร้างไฟล์ชื่อ chat_reaction_create.py ในไดเรกทอรีการทำงาน
  2. ใส่รหัสต่อไปนี้ใน 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()
    
  3. ในโค้ด ให้แทนที่ส่วนต่อไปนี้

    • SPACE: name ของพื้นที่ทำงานที่มีการโพสต์ข้อความ ซึ่งคุณจะรับจากเมธอด spaces.list ใน Chat API หรือจาก URL ของพื้นที่ทำงานก็ได้

    • MESSAGE: ชื่อข้อความที่คุณจะได้รับจากเนื้อหาการตอบกลับที่แสดงหลังจากสร้างข้อความแบบไม่พร้อมกันด้วย Chat API หรือด้วยชื่อที่กำหนดเองที่กำหนดให้กับข้อความเมื่อสร้าง

  4. สร้างและเรียกใช้ตัวอย่างในไดเรกทอรีการทำงาน

    python3 chat_reaction_create.py
    

Chat API จะส่งคืนอินสแตนซ์ของ Reaction ซึ่งแสดงรายละเอียดของรีแอ็กชันที่สร้างขึ้น