本指南說明如何針對以下項目的 Message
資源使用 get
方法:
Google Chat API 來傳回文字或卡片訊息的詳細資料。
在 Chat API 中,Chat 訊息會以
Message
資源。
儘管 Chat 使用者只能傳送含有文字的訊息,
即時通訊應用程式可以使用許多其他訊息功能,包括
靜態或互動式使用者介面,可用來收集
使用者,以及進行私人訊息傳遞。進一步瞭解訊息功能
如要瞭解 Chat API 可用的功能,請參閱
Google Chat 訊息總覽。
必要條件
Python
- 企業或企業 具有存取權的 Google Workspace 帳戶 Google Chat。
- 設定環境:
- 建立 Google Cloud 專案。
- 設定 OAuth 同意畫面。
- 啟用並設定 Google Chat API。 圖示和說明
- 安裝 Python Google API 用戶端程式庫。
- 根據您要在 Google Chat API 中驗證的方式建立存取憑證
要求:
- 如要以 Chat 使用者的身分進行驗證,
建立 OAuth 用戶端 ID
憑證,並將憑證儲存為 JSON 檔案
client_secrets.json
至本機目錄。 - 如要以 Chat 應用程式的身分進行驗證,
建立服務帳戶
憑證,並將憑證儲存為 JSON 檔案
credentials.json
。
- 如要以 Chat 使用者的身分進行驗證,
建立 OAuth 用戶端 ID
憑證,並將憑證儲存為 JSON 檔案
- 根據你要以使用者或使用者身分驗證選擇授權範圍 Chat 應用程式。
接收使用者驗證訊息
如何取得與 使用者驗證 並在要求中傳遞下列資訊:
- 指定
chat.messages.readonly
或chat.messages
授權範圍。 - 在
get
方法 的Message
項資源。 - 將
name
設為要取得的訊息資源名稱。
以下範例會取得 使用者驗證:
Python
- 在工作目錄中,建立名為
chat_message_get_user.py
的檔案。 在
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()
請在程式碼中替換下列內容:
SPACE
:聊天室名稱,您可以從中取得 這個spaces.list
方法 或聊天室網址傳送MESSAGE
:訊息名稱,您可以取得 建立非同步訊息後傳回的回應主體 透過 Chat API 或 自訂名稱 是在建立訊息時指派的
在工作目錄中建構並執行範例:
python3 chat_message_get_user.py
Chat API 會傳回
Message
敬上
詳述指定訊息
接收應用程式驗證訊息
如何取得與 應用程式驗證, 並在要求中傳遞下列資訊:
- 指定
chat.bot
授權範圍。 - 在
get
方法 的Message
項資源。 - 將
name
設為要取得的訊息資源名稱。
以下範例會取得 應用程式驗證:
Python
- 在工作目錄中,建立名為
chat_get_message_app.py
的檔案。 在
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)
請在程式碼中替換下列內容:
SPACE
:也就是空間的name
訊息也會張貼,您可以在spaces.list
方法 或聊天室網址傳送MESSAGE
:訊息名稱,您可以取得 建立非同步訊息後傳回的回應主體 透過 Chat API 或 自訂名稱 是在建立訊息時指派的
在工作目錄中建構並執行範例:
python3 chat_get_message_app.py
Chat API 會傳回
Message
敬上
詳述指定訊息