在訊息中加入回應

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

Reaction 項資源 所代表的表情符號,例如 👍?、🚲? 和 CANNOT TRANSLATE

必要條件

Node.js

回應訊息

如要回應訊息,請在 要求:

  • 指定 chat.messages.reactions.createchat.messages.reactionschat.messages 授權範圍。
  • 呼叫 CreateReaction() 方法,將 parent 做為要回應的訊息資源名稱傳遞,並將 reaction 做為 Reaction 的例項傳遞,其中 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:聊天室的 ID name。 您可以呼叫 ListSpaces() 方法,或從空間的網址取得 ID。
  • MESSAGE_NAME:訊息的 ID name。 建立完成後,您可從系統傳回的回應主體中取得 ID 或是以非同步方式傳送 自訂名稱 是在建立訊息時指派的

Chat API 會傳回 Reaction 的例項,詳細說明已建立的回應。