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