列出訊息回應

本指南說明如何在 Google Chat API 的 Reaction 資源上使用 list() 方法,列出訊息的回應,例如 👍?、🚲? 以及 Θ。

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

必要條件

Node.js

列出回應

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

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

Chat API 會傳回分頁的回應清單