메시지에 대한 반응 나열

이 가이드에서는 Google Chat API의 Reaction 리소스에서 list() 메서드를 사용하여 👍, 🚲, 🌞와 같은 메시지의 리액션을 나열하는 방법을 설명합니다.

Reaction 리소스는 사용자가 메시지에 반응하는 데 사용할 수 있는 그림 이모티콘(예: 👍, 🚲, 🌞)을 나타냅니다.

기본 요건

Node.js

리액션 목록

메시지의 리액션을 나열하려면 요청에 다음을 전달합니다.

  • chat.messages.reactions.readonly, chat.messages.reactions, chat.messages.readonly 또는 chat.messages 승인 범위를 지정합니다.
  • parent를 메시지의 리소스 이름으로 전달하여 ListReactions() 메서드를 호출합니다.

다음 예에서는 지정된 메시지에 대한 리액션을 보여줍니다.

Node.js

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

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

// This sample shows how to list reactions 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'
  };

  // Make the request
  const pageResult = chatClient.listReactionsAsync(request);

  // Handle the response. Iterating over pageResult will yield results and
  // resolve additional pages automatically.
  for await (const response of pageResult) {
    console.log(response);
  }
}

main().catch(console.error);

이 샘플을 실행하려면 다음을 바꿉니다.

  • SPACE_NAME: 스페이스의 name의 ID입니다. ListSpaces() 메서드를 호출하거나 스페이스의 URL에서 ID를 가져올 수 있습니다.
  • MESSAGE_NAME: 메시지의 name에 있는 ID입니다. Chat API를 사용하여 비동기식으로 메시지를 작성한 후 반환된 응답 본문에서 ID를 가져오거나, 생성 시 메시지에 할당된 커스텀 이름을 사용하여 ID를 가져올 수 있습니다.

Chat API는 페이지로 나눈 반응 목록을 반환합니다.