메시지에 반응 추가

이 가이드에서는 Google Chat API의 Reaction 리소스에서 create() 메서드를 사용하여 메시지에 대한 반응을 추가하는 방법을 설명합니다(예: 👍, 👍, 💯).

Reaction 리소스는 사람들이 메시지에 반응하는 데 사용할 수 있는 그림 이모티콘을 나타냅니다(예: 👍, apigee, 애드센스를).

기본 요건

Node.js

메시지에 반응 추가하기

메시지에 대한 리액션을 만들려면 요청에 다음을 전달합니다.

  • chat.messages.reactions.create, chat.messages.reactions 또는 chat.messages 승인 범위를 지정합니다.
  • CreateReaction() 메서드를 호출하여 parent를 반응할 메시지의 리소스 이름으로 전달하고 reactionunicode 필드가 유니코드 문자열로 표시되는 표준 그림 이모티콘인 Reaction의 인스턴스로 전달합니다.

다음 예에서는 😀 그림 이모티콘으로 메시지에 반응합니다.

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() 메서드를 호출하거나 스페이스의 URL에서 ID를 가져올 수 있습니다.
  • MESSAGE_NAME: 메시지의 name에 있는 ID입니다. Chat API를 사용하여 메시지를 비동기식으로 만들거나 만들 때 메시지에 할당된 맞춤 이름으로 메시지를 만든 후 반환된 응답 본문에서 ID를 가져올 수 있습니다.

Chat API는 생성된 리액션을 자세히 설명하는 Reaction 인스턴스를 반환합니다.