เพิ่มความรู้สึกที่มีต่อข้อความ

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

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

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

Node.js

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

เพิ่มรีแอ็กชันต่อข้อความ

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

  • ระบุ chat.messages.reactions.create, chat.messages.reactions หรือ chat.messages ขอบเขตการให้สิทธิ์
  • เรียกใช้ CreateReaction() โดยส่ง parent เป็นชื่อทรัพยากรของข้อความเพื่อแสดงความรู้สึก และ reaction เป็นอินสแตนซ์ของ Reaction ซึ่งช่อง unicode เป็นอีโมจิมาตรฐานที่แสดงด้วย Unicode สตริง

ตัวอย่างต่อไปนี้แสดงความรู้สึกต่อข้อความด้วยอีโมจิ 😀

Node.js

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

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

// This sample shows how to create reaction 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',
    reaction: {
      // A standard emoji represented by a unicode string.
      emoji: { unicode: '😀' }
    }
  };

  // Make the request
  const response = await chatClient.createReaction(request);

  // Handle the response
  console.log(response);
}

main().catch(console.error);

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

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

Chat API จะแสดงผลอินสแตนซ์ Reaction ที่จะแสดงรายละเอียดรีแอ็กชันที่สร้างขึ้น