คำแนะนำนี้จะอธิบายวิธีใช้เมธอด create
ในแหล่งข้อมูล Reaction
ของ Google Chat API เพื่อเพิ่มรีแอ็กชันต่อข้อความ เช่น 👍, 🚲 และ 🌞
แหล่งข้อมูล Reaction
รายการ
แสดงอีโมจิที่ผู้คนใช้แสดงความรู้สึกต่อข้อความได้ เช่น 👍, 🚲,
และ 🌞
ข้อกำหนดเบื้องต้น
Python
- ธุรกิจหรือองค์กร บัญชี Google Workspace ที่มีสิทธิ์เข้าถึง Google Chat
- ตั้งค่าสภาพแวดล้อมโดยทำดังนี้
- สร้างโปรเจ็กต์ Google Cloud
- กำหนดค่าหน้าจอขอความยินยอม OAuth
- เปิดใช้และกำหนดค่า Google Chat API โดยใช้ชื่อ ไอคอนและคำอธิบายสำหรับแอป Chat
- ติดตั้ง งูหลาม ไลบรารีของไคลเอ็นต์ Google API
-
สร้างข้อมูลเข้าสู่ระบบรหัสไคลเอ็นต์ OAuth สำหรับแอปพลิเคชันบนเดสก์ท็อป หากต้องการเรียกใช้ตัวอย่างใน
ให้บันทึกข้อมูลเข้าสู่ระบบเป็นไฟล์ JSON ชื่อ
client_secrets.json
ลงในไฟล์ ไดเรกทอรีในเครื่อง
- เลือกขอบเขตการให้สิทธิ์ที่รองรับการตรวจสอบสิทธิ์ผู้ใช้
เพิ่มรีแอ็กชันต่อข้อความ
หากต้องการสร้างรีแอ็กชันต่อข้อความ ให้ส่งข้อมูลต่อไปนี้ใน คำขอ:
- ระบุ
chat.messages.reactions.create
,chat.messages.reactions
หรือchat.messages
ขอบเขตการให้สิทธิ์ - เรียกใช้
create
วิธี ใน แหล่งข้อมูลReaction
- ตั้งค่า
parent
เป็นชื่อทรัพยากรของข้อความเพื่อแสดงความรู้สึก - ตั้งค่า
body
(เนื้อหาของคำขอ) เป็นอินสแตนซ์ของReaction
ซึ่งช่องunicode
เป็นอีโมจิมาตรฐานที่แสดงด้วย Unicode สตริง
ตัวอย่างต่อไปนี้มีการแสดงความรู้สึกต่อข้อความด้วยอีโมจิ 😀
Python
- สร้างไฟล์ชื่อ
chat_reaction_create.py
ในไดเรกทอรีการทำงาน รวมรหัสต่อไปนี้ใน
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()
ในโค้ด ให้แทนที่
SPACE
:name
ของพื้นที่ทำงานที่ โพสต์ข้อความไปแล้ว ซึ่งคุณสามารถดูได้จาก เมธอดspaces.list
ใน Chat API หรือจาก URL ของพื้นที่ทำงานMESSAGE
: ชื่อข้อความซึ่งคุณจะดูได้ จากเนื้อหาการตอบกลับที่ส่งคืนหลังจากสร้างข้อความแบบไม่พร้อมกัน ด้วย Chat API หรือ ชื่อที่กำหนดเอง ที่กำหนดให้กับข้อความขณะสร้าง
ในไดเรกทอรีการทำงาน ให้สร้างและเรียกใช้ตัวอย่างด้วยคำสั่งต่อไปนี้
python3 chat_reaction_create.py
Chat API จะแสดงผลอินสแตนซ์
Reaction
ที่จะแสดงรายละเอียดรีแอ็กชันที่สร้างขึ้น