Sprawdzanie szczegółów wiadomości

Z tego przewodnika dowiesz się, jak używać metody get w zasobie Message interfejsu Google Chat API do zwracania szczegółów wiadomości tekstowej lub karty.

Message zasób reprezentuje tekst lub karta wiadomość w Google Chat. Dostępne opcje create, get, update lub delete wiadomość w interfejsie Google Chat API przez wywołanie odpowiednich metod. Więcej informacji o wiadomościach tekstowych i karcianych znajdziesz w artykule Omówienie wiadomości w Google Chat

Wymagania wstępne

Python

  • Python w wersji 3.6 lub nowszej
  • narzędzie do zarządzania pakietami pip;
  • Najnowsze biblioteki klienta Google. Aby je zainstalować lub zaktualizować: uruchom następujące polecenie w interfejsie wiersza poleceń:
    pip3 install --upgrade google-api-python-client google-auth-oauthlib
    

Otrzymywanie wiadomości z uwierzytelnianiem użytkownika

Aby uzyskać szczegółowe informacje o wiadomości z: uwierzytelnianie użytkownika, w swoim żądaniu:

  • Określ zakres autoryzacji chat.messages.readonly lub chat.messages.
  • Wywołaj funkcję Metoda get w Message zasób.
  • Ustaw name na nazwę zasobu wiadomości, którą chcesz pobrać.

W poniższym przykładzie pojawi się komunikat z adresem uwierzytelnianie użytkownika:

Python

  1. W katalogu roboczym utwórz plik o nazwie chat_message_get_user.py.
  2. Umieść w pliku chat_message_get_user.py ten kod:

    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. Zastąp w kodzie następujące elementy:

    • SPACE: nazwa pokoju, którą możesz uzyskać z: Metoda spaces.list w interfejsie Chat API lub z adresu URL pokoju.
    • MESSAGE: nazwa wiadomości, którą możesz uzyskać; z treści odpowiedzi zwróconej po asynchronicznym utworzeniu wiadomości za pomocą interfejsu Chat API albo nazwa niestandardowa jest przypisany do wiadomości w momencie utworzenia.
  4. W katalogu roboczym skompiluj i uruchom przykład:

    python3 chat_message_get_user.py
    

Interfejs Chat API zwraca instancję Message z określonym komunikatem.

Otrzymywanie wiadomości z uwierzytelnianiem aplikacji

Aby uzyskać szczegółowe informacje o wiadomości z: uwierzytelnianie aplikacji, w swoim żądaniu:

  • Określ zakres autoryzacji chat.bot.
  • Wywołaj funkcję Metoda get w Message zasób.
  • Ustaw name na nazwę zasobu wiadomości, którą chcesz pobrać.

W poniższym przykładzie pojawi się komunikat z adresem uwierzytelnianie aplikacji:

Python

  1. W katalogu roboczym utwórz plik o nazwie chat_get_message_app.py.
  2. Umieść w pliku chat_get_message_app.py ten kod:

    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. Zastąp w kodzie następujące elementy:

    • SPACE: element name w pokoju, w którym jest zostanie przesłana wiadomość, którą można uzyskać z Metoda spaces.list w interfejsie Chat API lub z adresu URL pokoju.

    • MESSAGE: nazwa wiadomości, którą możesz uzyskać; z treści odpowiedzi zwróconej po asynchronicznym utworzeniu wiadomości za pomocą interfejsu Chat API albo nazwa niestandardowa jest przypisany do wiadomości w momencie utworzenia.

  4. W katalogu roboczym skompiluj i uruchom przykład:

    python3 chat_get_message_app.py
    

Interfejs Chat API zwraca instancję Message z określonym komunikatem.