메시지에서 반응 삭제하기

이 가이드에서는 delete() 반응을 삭제할 수 있는 Google Chat API의 Reaction 리소스 관련 메서드 (예: 👍, 🏅, 💯) 반응을 삭제해도 메시지는 삭제되지 않습니다.

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

기본 요건

Node.js

반응 삭제

메시지에서 반응을 삭제하려면 요청에 다음을 전달합니다.

  • chat.messages.reactions 또는 chat.messages 승인 범위를 지정합니다.
  • DeleteReaction() 메서드를 호출하여 name를 삭제할 리액션의 리소스 이름으로 전달합니다.

다음 예시에서는 메시지에서 😀 리액션을 삭제합니다.

Node.js

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

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

// This sample shows how to delete a 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, MESSAGE_NAME, and REACTION_NAME here
    name: 'spaces/SPACE_NAME/messages/MESSAGE_NAME/reactions/REACTION_NAME'
  };

  // Make the request
  const response = await chatClient.deleteReaction(request);

  // Handle the response
  console.log(response);
}

main().catch(console.error);

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

  • SPACE_NAME: 스페이스의 name ListSpaces() 메서드를 호출하거나 스페이스의 URL에서 ID를 가져올 수 있습니다.
  • MESSAGE_NAME: 메시지의 name에 있는 ID입니다. Chat API를 사용하여 메시지를 비동기식으로 만들거나 만들 때 메시지에 할당된 맞춤 이름으로 메시지를 만든 후 반환된 응답 본문에서 ID를 가져올 수 있습니다.
  • REACTION_NAME: 반응의 ID name ID는 ListReactions() 메서드 또는 반응 생성 후 반환된 응답 본문에서 Chat API와 비동기식으로 실행할 수 있습니다

성공한 경우 응답 본문이 비어 있으며, 이는 반응이 이(가) 삭제되었습니다.