更新使用者和#39 的聊天室讀取狀態

本指南說明如何在 Google Chat API 的 SpaceReadState 資源上使用 update() 方法,將聊天室標示為已讀或未讀。

SpaceReadState 資源是單例資源,可代表指定使用者在 Google Chat 聊天室中上次讀取的訊息詳細資料。

必要條件

Node.js

更新呼叫使用者的聊天室讀取狀態

如要更新聊天室內使用者的已讀狀態,請在要求中加入以下內容:

  • 指定 chat.users.readstate 授權範圍。
  • 呼叫 UpdateSpaceReadState() 方法。
  • 傳遞 updateMasklastReadTime 值。
  • 使用以下方法,將 spaceReadState 傳遞為 SpaceReadState 的例項:
    • name 欄位會設為要更新的聊天室讀取狀態,其中包含 使用者 ID 或別名,以及聊天室 ID。僅支援更新聊天室讀取狀態的功能 更新發出呼叫之使用者的讀取狀態,可在 設定下列其中一項:
      • me 別名。例如 users/me/spaces/SPACE/spaceReadState
      • 來電使用者的 Workspace 電子郵件地址。例如 users/user@example.com/spaces/SPACE/spaceReadState
      • 發出呼叫的使用者 ID。例如 users/USER/spaces/SPACE/spaceReadState
    • lastReadTime 欄位會設為 使用者的聊天室讀取狀態已更新。通常對應於 上次讀取訊息的時間戳記,或使用者指定的時間戳記 標記聊天室中的上次讀取位置。lastReadTime早於 最新的訊息建立時間,UI 中會顯示為未讀取。如要將聊天室標示為已讀,請將 lastReadTime 設為大於 (晚於) 最新訊息建立時間的任何值。lastReadTime 已強制轉換成符合最新值 訊息建立時間請注意,聊天室的已讀狀態只會影響在聊天室頂層對話中顯示的訊息的已讀狀態。討論串中的回覆不受此時間戳記影響,請改用 執行緒讀取狀態

以下範例會更新呼叫使用者的聊天室讀取狀態:

Node.js

chat/client-libraries/cloud/update-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'];

// This sample shows how to update a 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 timestamp = new Date('2000-01-01').getTime();
  const request = {
    spaceReadState: {
      // Replace SPACE_NAME here
      name: 'users/me/spaces/SPACE_NAME/spaceReadState',
      lastReadTime: {
        seconds: Math.floor(timestamp / 1000),
        nanos: (timestamp % 1000) * 1000000
      }
    },
    updateMask: {
      // The field paths to update.
      paths: ['last_read_time']
    }
  };

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

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

main().catch(console.error);

如要執行這個範例,請將 SPACE_NAME 替換為 聊天室的 name。 您可以呼叫 ListSpaces() 方法,或從空間的網址取得 ID。

Google Chat API 會更新指定聊天室讀取狀態,並傳回 執行個體 SpaceReadState