获取有关用户聊天室读取状态的详细信息

本指南介绍了如何对 Google Chat API 的 SpaceReadState 资源使用 get() 方法,以获取有关用户在聊天室中的读取状态的详细信息。如需获取消息会话中消息的读取状态,请参阅详细了解用户的会话读取状态

SpaceReadState 资源是一个单例资源,用于表示指定用户在 Google Chat 聊天室中上次读取的消息的详细信息。

前提条件

Node.js

获取发起调用的用户的聊天室读取状态

如需详细了解用户在聊天室中的阅读状态,请在请求中添加以下内容:

  • 指定 chat.users.readstatechat.users.readstate.readonly 授权范围。
  • 调用 GetSpaceReadState() 方法,传递聊天室读取状态的 name,以获取包含用户 ID 或别名以及聊天室 ID 的数据。获取空间读取状态仅支持获取发起调用的用户的读取状态,这可以通过设置以下任一项来指定:
    • me 别名。例如 users/me/spaces/SPACE/spaceReadState
    • 发起通话的用户的 Workspace 电子邮件地址。例如,users/user@example.com/spaces/SPACE/spaceReadState
    • 发起调用的用户的用户 ID。例如,users/USER/spaces/SPACE/spaceReadState

以下示例会获取发起调用的用户的空间读取状态:

Node.js

chat/client-libraries/cloud/get-space-read-state-user-cred.js
import {createClientWithUserCredentials} from './authentication-utils.js';

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

// This sample shows how to get the space read state for the calling user
async function main() {
  // Create a client
  const chatClient = await createClientWithUserCredentials(USER_AUTH_OAUTH_SCOPES);

  // Initialize request argument(s)
  const request = {
    // Replace SPACE_NAME here
    name: 'users/me/spaces/SPACE_NAME/spaceReadState'
  };

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

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

main().catch(console.error);

如需运行此示例,请将 SPACE_NAME 替换为聊天室的 name 中的 ID。您可以通过调用 ListSpaces() 方法或从聊天室的网址获取该 ID。

Google Chat API 会获取指定聊天室的读取状态,并返回 SpaceReadState 的实例。