このガイドでは、Reaction
リソースで create
メソッドを使用する方法について説明します
を使ってメッセージにリアクションを追加できます(fitbit、🚲?、🔥? など)。
「
Reaction
リソース
ユーザーがメッセージにリアクションするために使用できる絵文字を表します(例: 直、🚲?、
そして ☀。
前提条件
Python
- 企業または大企業 以下にアクセスできる Google Workspace アカウント Google Chat。
- 環境を設定します。
<ph type="x-smartling-placeholder">
- </ph>
- Google Cloud プロジェクトを作成します。
- OAuth 同意画面を構成します。
- Google Chat API を有効にして構成する。名前、 アプリのアイコン、説明を入力します。
- Python Google API クライアント ライブラリ。
- <ph type="x-smartling-placeholder"></ph>
デスクトップ アプリケーション用の OAuth クライアント ID 認証情報を作成するサンプルを実行するには、
で、認証情報を
client_secrets.json
という名前の JSON ファイルとして ディレクトリにあります。
- <ph type="x-smartling-placeholder"></ph> ユーザー認証をサポートする認可スコープを選択します。
メッセージにリアクションを追加する
メッセージへのリアクションを作成するには、 request:
chat.messages.reactions.create
、chat.messages.reactions
、またはchat.messages
承認スコープ。- 呼び出し
create
メソッド 日付Reaction
リソース。 parent
を、反応するメッセージのリソース名に設定します。body
(リクエスト本文)を次のインスタンスに設定します。Reaction
unicode
フィールドは、Unicode 文字で表される標準の絵文字です。 使用します。
次の例では、メッセージに 😃? 絵文字でリアクションします。
Python
- 作業ディレクトリに、
chat_reaction_create.py
という名前のファイルを作成します。 chat_reaction_create.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.reactions.create"] def main(): ''' Authenticates with Chat API via user credentials, then creates a reaction to 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().reactions().create( # The message to create a reaction to. # # 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. parent = 'spaces/SPACE/messages/MESSAGE', # The reaction to the message. body = { 'emoji': { # A standard emoji represented by a unicode string. 'unicode': '😀' } } ).execute() # Prints details about the created reaction. print(result) if __name__ == '__main__': main()
コードの次のように置き換えます。
SPACE
: スペースのname
表示されます。この情報は、spaces.list
メソッド スペースの URL から取得できます。MESSAGE
: メッセージ名。取得して取得できます。 非同期でメッセージを作成した後に返されるレスポンス本文から Chat API、または カスタム名 自動的に割り当てられます。
作業ディレクトリでサンプルをビルドして実行します。
python3 chat_reaction_create.py
Chat API は、メッセージに対して
Reaction
作成されたリアクションの詳細を確認できます。