在訊息中加入回應

本指南說明如何在 Google Chat API 的 Reaction 資源上使用 create() 方法,為訊息新增反應,例如 👍?、🚲? 和 🌞?。

Reaction 資源代表使用者可用來回應訊息的表情符號,例如 👍?、🚲? 和 🌞?。

必要條件

Node.js

回應訊息

如要建立訊息的回應,請在要求中傳遞下列內容:

  • 指定 chat.messages.reactions.createchat.messages.reactionschat.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 的 ID。您可以呼叫 ListSpaces() 方法或聊天室網址來取得 ID。
  • MESSAGE_NAME:訊息 name 中的 ID。您可以使用 Chat API 以非同步方式建立訊息,或在建立時將自訂名稱指派給訊息,然後從回應主體中取得 ID。

Chat API 會傳回 Reaction 的執行個體,用於詳細說明建立的回應。