刪除訊息中的回應

本指南說明如何在 Google Chat API 的 Reaction 資源上使用 delete() 方法,從訊息中刪除回應 (例如 👍?、🚲? 和 🌞?)。刪除回應不會刪除訊息。

Reaction 資源代表使用者可用來回應訊息的表情符號,例如 👍?、🚲? 和 🌞?。

必要條件

Node.js

刪除回應

如要刪除訊息中的回應,請在要求中傳遞以下內容:

  • 指定 chat.messages.reactionschat.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 的 ID。您可以呼叫 ListSpaces() 方法,或從空間的網址取得 ID。
  • MESSAGE_NAME:訊息的 name 的 ID。使用 Chat API 以非同步方式建立訊息後,您可以從傳回的回應主體取得 ID,或是在建立訊息時使用自訂名稱
  • REACTION_NAME:回應的 name 中的 ID。您可以呼叫 ListReactions() 方法,或透過使用 Chat API 以非同步方式建立回應後,取得回應主體來取得 ID。

如果成功,回應主體會留白,表示已刪除回應。