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

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

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

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

Node.js

  • ธุรกิจหรือองค์กร บัญชี Google Workspace ที่มีสิทธิ์เข้าถึง Google Chat

แสดงรายการความรู้สึก

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

  • ระบุ chat.messages.reactions.readonly, chat.messages.reactions chat.messages.readonly หรือ chat.messages ขอบเขตการให้สิทธิ์
  • เรียกใช้เมธอด ListReactions() โดยส่ง parent เป็นชื่อทรัพยากรของข้อความ

ตัวอย่างต่อไปนี้แสดงรีแอ็กชันสำหรับข้อความที่ระบุ

Node.js

chat/client-libraries/cloud/list-reactions-user-cred.js
import {createClientWithUserCredentials} from './authentication-utils.js';

const USER_AUTH_OAUTH_SCOPES = ['https://www.googleapis.com/auth/chat.messages.reactions.readonly'];

// This sample shows how to list reactions to a message with user credential
async function main() {
  // Create a client
  const chatClient = await createClientWithUserCredentials(USER_AUTH_OAUTH_SCOPES);

  // Initialize request argument(s)
  const request = {
    // Replace SPACE_NAME and MESSAGE_NAME here.
    parent: 'spaces/SPACE_NAME/messages/MESSAGE_NAME'
  };

  // Make the request
  const pageResult = chatClient.listReactionsAsync(request);

  // Handle the response. Iterating over pageResult will yield results and
  // resolve additional pages automatically.
  for await (const response of pageResult) {
    console.log(response);
  }
}

main().catch(console.error);

หากต้องการเรียกใช้ตัวอย่างนี้ ให้แทนที่รายการต่อไปนี้

  • SPACE_NAME: รหัสจากพื้นที่ทำงาน name คุณรับรหัสได้โดยเรียกใช้เมธอด ListSpaces() หรือจาก URL ของพื้นที่ทำงาน
  • MESSAGE_NAME: รหัสจาก name คุณดูรหัสได้จากเนื้อหาการตอบกลับที่แสดงผลหลังจากสร้างข้อความแบบไม่พร้อมกันด้วย Chat API หรือชื่อที่กำหนดเองที่กำหนดให้กับข้อความเมื่อสร้าง

Chat API จะแสดงรายการรีแอ็กชันแบบแบ่งหน้า