이 가이드에서는 Google Chat API의 SpaceReadState 리소스에서 get() 메서드를 사용하여 스페이스 내 사용자의 읽기 상태에 관한 세부정보를 가져오는 방법을 설명합니다. 메시지 대화목록에서 메시지의 읽기 상태를 가져오려면 사용자의 대화목록 읽기 상태에 관한 세부정보 가져오기를 참고하세요.
SpaceReadState 리소스는 Google Chat 스페이스에서 지정된 사용자가 마지막으로 읽은 메시지에 관한 세부정보를 나타내는 싱글톤 리소스입니다.
스페이스 내에서 사용자의 읽기 상태에 관한 세부정보를 가져오려면 요청에 다음을 포함합니다.
chat.users.readstate 또는 chat.users.readstate.readonly 승인 범위를 지정합니다.
GetSpaceReadState() 메서드를 호출하여 사용자 ID 또는 별칭과 스페이스 ID가 포함된 스페이스 읽기 상태의 name를 전달하여 가져옵니다. 공간 읽기 상태 가져오기는 호출 사용자의 읽기 상태 가져오기만 지원하며, 이는 다음 중 하나를 설정하여 지정할 수 있습니다.
me 별칭 예를 들면 users/me/spaces/SPACE/spaceReadState입니다.
호출 사용자의 Workspace 이메일 주소입니다. 예를 들면 다음과 같습니다.
users/user@example.com/spaces/SPACE/spaceReadState
호출 사용자의 사용자 ID입니다. 예를 들면 다음과 같습니다.
users/USER/spaces/SPACE/spaceReadState
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-02-14(UTC)"],[[["This guide explains how to use the `get()` method to retrieve a user's read state within a Google Chat space using the Google Chat API."],["You need a Google Workspace account and a configured Google Cloud project with the Google Chat API enabled to use this functionality."],["The guide provides instructions and code samples (Node.js) to retrieve the calling user's space read state using the `GetSpaceReadState()` method."],["To get the read state, you need to specify the appropriate authorization scope and provide the space name in the request."],["For message-specific read states within a thread, refer to the separate guide on getting thread read states."]]],["To retrieve a user's read state in a Google Chat space, use the `get()` method on the `SpaceReadState` resource. First, ensure you have a Google Workspace account, set up your environment with Node.js, and have appropriate OAuth credentials. Then, specify the `chat.users.readstate` or `chat.users.readstate.readonly` scope, and call `GetSpaceReadState()`, providing the space read state's `name`, including the user's ID or alias and the space ID. This returns a `SpaceReadState` instance.\n"]]