메시지에 대한 세부정보 보기

이 가이드에서는 다음의 Message 리소스에서 get 메서드를 사용하는 방법을 설명합니다. Google Chat API를 사용하여 문자 또는 카드 메시지에 대한 세부정보를 반환합니다.

Chat API에서 Chat 메시지는 Message 리소스. Chat 사용자는 텍스트가 포함된 메시지만 보낼 수 있지만 채팅 앱에서는 다음과 같은 다양한 메시지 기능을 사용할 수 있습니다. 정적 또는 대화형 사용자 인터페이스를 표시하여 메시지를 비공개로 전달할 수 있습니다 메시지 기능 자세히 알아보기 Chat API에서 사용할 수 있는 기능에 대한 자세한 내용은 Google Chat 메시지 개요

기본 요건

Python

사용자 인증이 포함된 메시지 받기

다음 메시지가 있는 메시지에 대한 세부정보를 확인하려면 다음을 사용하세요. 사용자 인증 요청에 다음을 전달합니다.

  • chat.messages.readonly 또는 chat.messages 승인 범위를 지정합니다.
  • 먼저 get 메서드Message 리소스.
  • name을 가져올 메시지의 리소스 이름으로 설정합니다.

다음 예는 사용자 인증:

Python

  1. 작업 디렉터리에 chat_message_get_user.py라는 파일을 만듭니다.
  2. chat_message_get_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.messages.readonly"]
    
    def main():
        '''
        Authenticates with Chat API via user credentials,
        then gets a message.
        '''
    
        # 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().messages().get(
    
            # The message to get.
            #
            # Replace SPACE with a space name.
            # Obtain the space name from the spaces resource of Chat API,
            # or from a space's URL.
            #
            # Replace MESSAGE with a message name.
            # Obtain the message name from the response body returned
            # after creating a message asynchronously with Chat REST API.
            name = 'spaces/SPACE/messages/MESSAGE'
    
        ).execute()
    
        # Prints details about the message.
        print(result)
    
    if __name__ == '__main__':
        main()
    
  3. 코드에서 다음을 바꿉니다.

    • SPACE: 스페이스 이름으로, 다음에서 가져올 수 있습니다. spaces.list 메서드 Chat API 또는 스페이스의 URL에서 가져올 수 있습니다.
    • MESSAGE: 가져올 수 있는 메시지 이름입니다. 비동기식으로 메시지를 만든 후 반환된 응답 본문에서 삭제 Chat API 또는 맞춤 이름 메시지를 만들 때 할당됩니다.
  4. 작업 디렉터리에서 샘플을 빌드하고 실행합니다.

    python3 chat_message_get_user.py
    

Chat API는 Message 드림 를 참조하세요.

앱 인증이 포함된 메시지 받기

다음 메시지가 있는 메시지에 대한 세부정보를 확인하려면 다음을 사용하세요. 앱 인증 요청에 다음을 전달합니다.

  • chat.bot 승인 범위를 지정합니다.
  • 먼저 get 메서드Message 리소스.
  • name을 가져올 메시지의 리소스 이름으로 설정합니다.

다음 예는 앱 인증:

Python

  1. 작업 디렉터리에 chat_get_message_app.py라는 파일을 만듭니다.
  2. chat_get_message_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)
    
    # Get a Chat message.
    result = chat.spaces().messages().get(
    
        # The message to get.
        #
        # Replace SPACE with a space name.
        # Obtain the space name from the spaces resource of Chat API,
        # or from a space's URL.
        #
        # Replace MESSAGE with a message name.
        # Obtain the message name from the response body returned
        # after creating a message asynchronously with Chat REST API.
        name='spaces/SPACE/messages/MESSAGE'
    
      ).execute()
    
    # Print Chat API's response in your command line interface.
    print(result)
    
  3. 코드에서 다음을 바꿉니다.

    • SPACE: name 메시지가 게시되면 spaces.list 메서드 Chat API 또는 스페이스의 URL에서 가져올 수 있습니다.

    • MESSAGE: 가져올 수 있는 메시지 이름입니다. 비동기식으로 메시지를 만든 후 반환된 응답 본문에서 삭제 Chat API 또는 맞춤 이름 메시지를 만들 때 할당됩니다.

  4. 작업 디렉터리에서 샘플을 빌드하고 실행합니다.

    python3 chat_get_message_app.py
    

Chat API는 Message 드림 를 참조하세요.