채팅 메시지 (DM) 스페이스 찾기

이 가이드에서는 Google Chat API의 Space 리소스에서 findDirectMessage() 메서드를 사용하여 채팅 메시지 (DM) 스페이스에 대한 세부정보를 가져오는 방법을 설명합니다.

Space 리소스는 사용자와 Chat 앱이 메시지를 보내고, 파일을 공유하고, 공동작업할 수 있는 장소를 나타냅니다. 스페이스에는 다음과 같은 여러 유형이 있습니다.

  • 채팅 메시지 (DM)는 두 사용자 간의 대화 또는 사용자와 Chat 앱 간의 대화입니다.
  • 그룹 채팅은 세 명 이상의 사용자와 Chat 앱 간의 대화입니다.
  • 이름이 지정된 스페이스는 사용자가 메시지를 보내고, 파일을 공유하고, 공동작업하는 지속적인 공간입니다.

앱 인증으로 인증하면 Chat 앱이 Google Chat에서 액세스할 수 있는 DM(예: 멤버인 DM)을 가져올 수 있습니다. 사용자 인증으로 인증하면 인증된 사용자가 액세스할 수 있는 DM이 반환됩니다.

기본 요건

Node.js

채팅 메시지 찾기

Google Chat에서 채팅 메시지를 찾으려면 요청에 다음을 전달합니다.

  • 앱 인증을 사용하는 경우 chat.bot 승인 범위를 지정합니다. 사용자 인증을 사용하여 chat.spaces.readonly 또는 chat.spaces 승인 범위를 지정합니다.
  • DM에서 다른 사용자의 name를 전달하여 FindDirectMessage() 메서드를 호출하여 반환합니다. 사용자 인증을 사용하면 이 메서드가 호출하는 사용자와 지정된 사용자 간의 DM을 반환합니다. 앱 인증을 사용하면 이 메서드는 호출 앱과 지정된 사용자 간의 DM을 반환합니다.
  • 사람 사용자를 스페이스 회원으로 추가하려면 users/{user}를 지정합니다. 여기서 {user}는 People API의 person에 대한 {person_id} 또는 Directory API의 user의 ID입니다. 예를 들어 People API 사용자 resourceNamepeople/123456789인 경우 users/123456789member.name로 하는 멤버십을 포함하여 사용자를 스페이스에 추가할 수 있습니다.

사용자 인증이 포함된 채팅 메시지 찾기

사용자 인증으로 채팅 메시지를 찾는 방법은 다음과 같습니다.

Node.js

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

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

// This sample shows how to find a Direct Message space with user credential
async function main() {
  // Create a client
  const chatClient = await createClientWithUserCredentials(USER_AUTH_OAUTH_SCOPES);

  // Initialize request argument(s)
  const request = {
    // Replace USER_NAME here
    name: 'users/USER_NAME'
  };

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

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

main().catch(console.error);

이 샘플을 실행하려면 USER_NAME를 사용자의 name 필드에 있는 ID로 바꿉니다.

Chat API는 지정된 DM에 관한 세부정보를 제공하는 Space의 인스턴스를 반환합니다.

앱 인증으로 채팅 메시지 찾기

앱 인증을 사용하여 다이렉트 메시지를 찾는 방법은 다음과 같습니다.

Node.js

chat/client-libraries/cloud/find-dm-space-app-cred.js
import {createClientWithAppCredentials} from './authentication-utils.js';

// This sample shows how to find a Direct Message space with app credential
async function main() {
  // Create a client
  const chatClient = createClientWithAppCredentials();

  // Initialize request argument(s)
  const request = {
    // Replace USER_NAME here
    name: 'users/USER_NAME'
  };

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

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

main().catch(console.error);

이 샘플을 실행하려면 USER_NAME를 사용자의 name 필드의 ID로 바꿉니다.

Chat API는 지정된 DM을 자세히 설명하는 Space 인스턴스를 반환합니다.