메시지에 대한 반응 나열

이 가이드에서는 list() Google Chat API의 Reaction 리소스에 대한 메서드를 호출하여 (예: 👍, ☼, 💯입니다)

Reaction 리소스 사람들이 메시지에 반응할 때 사용할 수 있는 이모티콘을 나타냅니다(예: 👍, ↩, 그리고 🏠

기본 요건

Node.js

반응 나열

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

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

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

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

Chat API는 페이지로 구분된 반응 목록.