คำแนะนำนี้จะอธิบายวิธีใช้เมธอด delete
ในแหล่งข้อมูล 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
หรือchat.messages
- เรียกใช้
delete
วิธี ใน แหล่งข้อมูลReaction
- ตั้งค่า
name
เป็นชื่อทรัพยากรของความรู้สึกที่จะลบ
ตัวอย่างต่อไปนี้จะลบรีแอ็กชัน 😀 ออกจากข้อความ:
Python
- สร้างไฟล์ชื่อ
chat_reaction_delete.py
ในไดเรกทอรีการทำงาน รวมรหัสต่อไปนี้ใน
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()
ในโค้ด ให้แทนที่
SPACE
: ชื่อพื้นที่ทำงานซึ่งดูได้จาก เวลาspaces.list
วิธี ใน Chat API หรือจาก URL ของพื้นที่ทำงานMESSAGE
: ชื่อข้อความซึ่งคุณจะดูได้ จากเนื้อหาการตอบกลับที่ส่งคืนหลังจากสร้างข้อความแบบไม่พร้อมกัน ด้วย Chat API หรือ ชื่อที่กำหนดเอง ที่กำหนดให้กับข้อความขณะสร้างREACTION
: ชื่อความรู้สึกที่คุณหาได้ จากspaces.messages.reactions.list
วิธี ใน Chat API หรือจากเนื้อหาการตอบกลับที่แสดงหลังจาก การสร้างรีแอ็กชันแบบไม่พร้อมกันด้วย Chat API
ในไดเรกทอรีการทำงาน ให้สร้างและเรียกใช้ตัวอย่างด้วยคำสั่งต่อไปนี้
python3 chat_reaction_delete.py
หากสำเร็จ เนื้อหาการตอบสนองจะว่างเปล่า ซึ่งบ่งบอกว่ารีแอ็กชันนั้น ลบแล้ว