ดูรายละเอียดเกี่ยวกับสถานะการอ่านพื้นที่ทำงานของผู้ใช้

คำแนะนำนี้จะอธิบายวิธีใช้เมธอด get() ในทรัพยากร SpaceReadState ของ Google Chat API เพื่อรับรายละเอียดเกี่ยวกับสถานะการอ่านของผู้ใช้ภายในพื้นที่ทำงาน หากต้องการดูสถานะการอ่านของข้อความในชุดข้อความ ให้ดูดูรายละเอียดเกี่ยวกับสถานะการอ่านชุดข้อความของผู้ใช้

SpaceReadState ทรัพยากรเป็นทรัพยากรแบบ Singleton ที่แสดงรายละเอียดเกี่ยวกับข้อความที่อ่านล่าสุดของผู้ใช้ที่ระบุในพื้นที่ทำงานของ Google Chat

ข้อกำหนดเบื้องต้น

Node.js

  • บัญชี Google Workspace รุ่น Business หรือ Enterprise ที่มีสิทธิ์เข้าถึง Google Chat

รับสถานะการอ่านพื้นที่ทำงานของผู้ใช้ที่โทร

หากต้องการดูรายละเอียดเกี่ยวกับสถานะการอ่านของผู้ใช้ภายในพื้นที่ทำงาน ให้ใส่ข้อมูลต่อไปนี้ในคำขอ

  • ระบุขอบเขตการให้สิทธิ์ chat.users.readstate หรือ chat.users.readstate.readonly
  • เรียกใช้เมธอด GetSpaceReadState() โดยส่ง name ของสถานะการอ่านพื้นที่ทำงานเพื่อรับข้อมูล ซึ่งรวมถึงรหัสผู้ใช้หรืออีเมลแทนและรหัสพื้นที่ทำงาน การรับสถานะการอ่านพื้นที่ทำงานรองรับเฉพาะการรับสถานะการอ่านของผู้ใช้ที่โทร ซึ่งระบุได้โดยการตั้งค่าอย่างใดอย่างหนึ่งต่อไปนี้
    • ชื่อแทน me เช่น users/me/spaces/SPACE/spaceReadState
    • อีเมล Workspace ของผู้ใช้ที่โทร เช่น users/user@example.com/spaces/SPACE/spaceReadState
    • รหัสผู้ใช้ของผู้ใช้ที่โทร เช่น 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 ของพื้นที่ทำงาน คุณรับรหัสได้โดยเรียกใช้เมธอด ListSpaces() หรือจาก URL ของพื้นที่ทำงาน

Google Chat API จะรับสถานะการอ่านของพื้นที่ทำงานที่ระบุและแสดงผลอินสแตนซ์ของ SpaceReadState