为消息添加回应

本指南介绍了如何对 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。您可以通过以下方式获取 ID:使用 Chat API 异步创建消息后从返回的响应正文中获取,或者使用在创建时为消息分配的自定义名称获取。

Chat API 会返回一个 Reaction 实例,其中详细说明了创建的回应。