이 가이드에서는 Space
에서 findDirectMessage
메서드를 사용하는 방법을 설명합니다.
Google Chat API의 리소스를 사용하여 채팅 메시지 (DM) 스페이스에 관한 세부정보를 확인하세요.
이
Space
리소스
는 사람과 채팅 앱이 메시지를 보낼 수 있는 위치를 나타냅니다.
파일 공유, 공동작업 등이 가능합니다 다음과 같은 여러 유형의 스페이스가 있습니다.
- 채팅 메시지 (DM)는 사용자 2명 또는 상대방과 채팅 앱
- 그룹 채팅은 세 명 이상의 사용자와 채팅 앱
- 이름이 지정된 스페이스는 사용자가 메시지를 보내고, 파일을 공유하고, 협업할 수 있습니다
다음을 사용하여 인증 앱 인증 채팅 앱에서 채팅 앱이 Google Chat에서 에 액세스할 수 있음 (예: 소속된 채팅 메시지) 다음을 사용하여 인증 사용자 인증은 액세스 권한이 있는지 확인합니다.
기본 요건
Python
- 비즈니스 또는 기업 다음 액세스 권한이 있는 Google Workspace 계정 Google Chat
- 환경을 설정합니다.
<ph type="x-smartling-placeholder">
- </ph>
- Google Cloud 프로젝트를 만듭니다.
- OAuth 동의 화면 구성
- Google Chat API를 사용 설정 및 구성합니다. 아이콘, 채팅 앱 설명이 있습니다.
- 설치 Python Google API 클라이언트 라이브러리를 참조하세요.
- Google Chat API에서 인증하려는 방법에 따라 액세스 사용자 인증 정보를 만듭니다.
요청:
<ph type="x-smartling-placeholder">
- </ph>
- Chat 사용자로 인증하려면 다음 단계를 따르세요.
OAuth 클라이언트 ID 만들기
사용자 인증 정보를 만들고 사용자 인증 정보를
client_secrets.json
을 로컬 디렉터리로 복사합니다. - 채팅 앱으로 인증하려면 다음 단계를 따르세요.
서비스 계정 만들기
사용자 인증 정보를 만들고 사용자 인증 정보를
credentials.json
입니다.
- Chat 사용자로 인증하려면 다음 단계를 따르세요.
OAuth 클라이언트 ID 만들기
사용자 인증 정보를 만들고 사용자 인증 정보를
- <ph type="x-smartling-placeholder"></ph> 사용자로 인증할 것인지, 아니면 다음으로 인증할 것인지에 따라 승인 범위를 선택합니다. 채팅 앱
Node.js
- 비즈니스 또는 기업 다음 액세스 권한이 있는 Google Workspace 계정 Google Chat
- 환경을 설정합니다.
<ph type="x-smartling-placeholder">
- </ph>
- Google Cloud 프로젝트를 만듭니다.
- OAuth 동의 화면 구성
- Google Chat API를 사용 설정 및 구성합니다. 아이콘, 채팅 앱 설명이 있습니다.
- 설치 Node.js Google API 클라이언트 라이브러리를 참조하세요.
- Google Chat API에서 인증하려는 방법에 따라 액세스 사용자 인증 정보를 만듭니다.
요청:
<ph type="x-smartling-placeholder">
- </ph>
- Chat 사용자로 인증하려면 다음 단계를 따르세요.
OAuth 클라이언트 ID 만들기
사용자 인증 정보를 만들고 사용자 인증 정보를
client_secrets.json
을 로컬 디렉터리로 복사합니다. - 채팅 앱으로 인증하려면 다음 단계를 따르세요.
서비스 계정 만들기
사용자 인증 정보를 만들고 사용자 인증 정보를
credentials.json
입니다.
- Chat 사용자로 인증하려면 다음 단계를 따르세요.
OAuth 클라이언트 ID 만들기
사용자 인증 정보를 만들고 사용자 인증 정보를
- <ph type="x-smartling-placeholder"></ph> 사용자로 인증할 것인지, 아니면 다음으로 인증할 것인지에 따라 승인 범위를 선택합니다. 채팅 앱
채팅 메시지 찾기
Google Chat에서 채팅 메시지를 찾으려면 다음을 전달합니다. 요청:
- 앱 인증에서 다음을 지정합니다.
chat.bot
승인 범위 다음으로 바꿉니다. 사용자 인증chat.spaces.readonly
또는chat.spaces
승인 범위를 지정합니다. - 먼저
findDirectMessage
메서드User
리소스에서name
를 전달 다시 요청할 수 있습니다 다음으로 바꿉니다. 사용자 인증 이 메서드는 호출하는 사용자와 지정된 사용자 간의 DM을 반환합니다. 다음으로 바꿉니다. 앱 인증을 사용할 경우 이 방법이 호출 앱과 지정된 사용자 간의 DM을 반환합니다. - 실제 사용자를 스페이스 멤버로 추가하려면
users/{user}
를 지정합니다. 각 항목의 의미는 다음과 같습니다.{user}
은{person_id}
person
또는user
사용할 수 있습니다. 예를 들어 People API 사람resourceName
가people/123456789
상태인 경우 다음을 포함하여 스페이스에 사용자를 추가할 수 있습니다.member.name
이(가)users/123456789
인 멤버십입니다.
사용자 인증이 포함된 채팅 메시지 찾기
채팅 메시지를 찾는 방법은 다음과 같습니다. 사용자 인증:
Python
- 작업 디렉터리에
chat_space_find_dm_user.py
라는 파일을 만듭니다. chat_space_find_dm_user.py
에 다음 코드를 포함합니다.from google_auth_oauthlib.flow import InstalledAppFlow from googleapiclient.discovery import build # Define your app's authorization scopes. # When modifying these scopes, delete the file token.json, if it exists. SCOPES = ["https://www.googleapis.com/auth/chat.spaces.readonly"] def main(): ''' Authenticates with Chat API via user credentials, then returns details about a specified DM. ''' # Authenticate with Google Workspace # and get user authorization. flow = InstalledAppFlow.from_client_secrets_file( 'client_secrets.json', SCOPES) creds = flow.run_local_server() # Build a service endpoint for Chat API. chat = build('chat', 'v1', credentials=creds) # Use the service endpoint to call Chat API. result = chat.spaces().findDirectMessage( # The other user in the direct message (DM) to return. # # Replace USER with a user name. name='users/USER' ).execute() # Prints details about the direct message. print(result) if __name__ == '__main__': main()
코드에서
USER
를name
Google Chat의User
작업 디렉터리에서 샘플을 빌드하고 실행합니다.
python3 chat_space_find_dm_user.py
Node.js
작업 디렉터리에서
find-direct-message-space.js
find-direct-message-space.js
에 다음 코드를 포함합니다.const chat = require('@googleapis/chat'); const {authenticate} = require('@google-cloud/local-auth'); /** * Find a direct message Chat space for a user. * @return {!Promise<!Object>} */ async function findDirectMessageSpace() { const scopes = [ 'https://www.googleapis.com/auth/chat.spaces.readonly', ]; const authClient = await authenticate({scopes, keyfilePath: 'client_secrets.json'}); const chatClient = await chat.chat({version: 'v1', auth: authClient}); return await chatClient.spaces.findDirectMessage( {name: 'users/USER'}); } findDirectMessageSpace().then(console.log);
코드에서
USER
를name
Google Chat의User
작업 디렉터리에서 샘플을 실행합니다.
node find-direct-message-space.js
Chat API는
Space
드림
세부정보를 확인할 수 있습니다
앱 인증이 포함된 채팅 메시지 찾기
채팅 메시지를 찾는 방법은 다음과 같습니다. 앱 인증:
Python
- 작업 디렉터리에
chat_space_find_dm_app.py
라는 파일을 만듭니다. chat_space_find_dm_app.py
에 다음 코드를 포함합니다.from google.oauth2 import service_account from apiclient.discovery import build # Specify required scopes. SCOPES = ['https://www.googleapis.com/auth/chat.bot'] # Specify service account details. CREDENTIALS = ( service_account.Credentials.from_service_account_file('credentials.json') .with_scopes(SCOPES) ) # Build the URI and authenticate with the service account. chat = build('chat', 'v1', credentials=CREDENTIALS) # Use the service endpoint to call Chat API. result = chat.spaces().findDirectMessage( # The other user in the direct message (DM) to return. # # Replace USER with a user name. name='users/USER' ).execute() print(result)
코드에서
USER
를name
Google Chat의User
작업 디렉터리에서 샘플을 빌드하고 실행합니다.
python3 chat_space_find_dm_app.py
Node.js
작업 디렉터리에서
app-find-direct-message-space.js
app-find-direct-message-space.js
에 다음 코드를 포함합니다.const chat = require('@googleapis/chat'); /** * Find a direct message Chat space for a user. * @return {!Promise<!Object>} */ async function findDirectMessageSpace() { const scopes = [ 'https://www.googleapis.com/auth/chat.bot', ]; const auth = new chat.auth.GoogleAuth({ scopes, keyFilename: 'credentials.json', }); const authClient = await auth.getClient(); const chatClient = await chat.chat({version: 'v1', auth: authClient}); return await chatClient.spaces.findDirectMessage( {name: 'users/USER'}); } findDirectMessageSpace().then(console.log);
코드에서
USER
를name
Google Chat의User
작업 디렉터리에서 샘플을 실행합니다.
node app-find-direct-message-space.js
Chat API는
지정된 DM을 자세히 설명하는 Space
입니다.