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

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

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

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

Node.js

  • บัญชี Google Workspace รุ่น Business หรือ Enterprise ที่มีสิทธิ์เข้าถึง 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 จะแสดงผลรายการรีแอ็กชันที่มีการแบ่งหน้า