このガイドでは、membership
リソースで delete
メソッドを使用する方法について説明します
スペースからメンバーを削除できます。「スペースから削除」も
できます。スペースの管理者のみである場合、その管理者は削除できません
方法について説明します。これらを削除する前に、別のユーザーをスペースの管理者として割り当ててください
できます。
「
Membership
リソース
人間のユーザーまたは Google Chat アプリのどちらが招待されているかを表します。
その場から離れることがなくなります。
前提条件
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> ユーザー認証をサポートする認可スコープを選択します。
スペースからメンバーを削除する
スペースからユーザー、Google グループ、Chat 用アプリを削除するには、 スペース:
- ユーザーまたは Google グループを削除するには、
chat.memberships
認証を指定します。 あります。Chat 用アプリを削除するには、chat.memberships.app
承認スコープ(アプリは自身のスコープのみを削除可能) membership;。ベスト プラクティスとして、 範囲が制限されます。 delete
メソッドを呼び出す 日付membership
リソース。- 削除するメンバーシップの
name
を渡します。メンバーシップが スペースの管理者のみにするには、スペースの管理者を このメンバーシップを削除しています。
メンバーシップを削除する方法は次のとおりです。
Python
- 作業ディレクトリに、
chat_membership_delete.py
という名前のファイルを作成します。 chat_membership_delete.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.memberships.app"] def main(): ''' Authenticates with Chat API via user credentials, then deletes the specified membership. ''' # 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().members().delete( # The membership to delete. # # Replace SPACE with a space name. # Obtain the space name from the spaces resource of Chat API, # or from a space's URL. # # Replace MEMBER with a membership name. # Obtain the membership name from the memberships resource of # Chat API. To delete a Chat app's membership, replace MEMBER # with app; an alias for the app calling the API. name='spaces/SPACE/members/MEMBER' ).execute() # Print Chat API's response in your command line interface. # When deleting a membership, the response body is empty. print(result) if __name__ == '__main__': main()
コードの次のように置き換えます。
SPACE
: スペース名。spaces.list
メソッド スペースの URL から取得できます。MEMBER
: メンバーシップ名。取得して取得できます。spaces.members.list
メソッドから 使用します。アプリのメンバーシップを削除するには、MEMBER
はapp
に置き換えます。
作業ディレクトリでサンプルをビルドして実行します。
python3 chat_membership_delete.py
成功すると、レスポンスの本文ではメンバーシップと
'state': 'NOT_A_MEMBER'
は、メンバーがスペースからなくなったことを示します。
{ "name": "spaces/SPACE/members/MEMBER", "state": "NOT_A_MEMBER" }
関連トピック
- ユーザーまたは Chat アプリのメンバーシップに関する詳細情報を取得する。
- スペースのメンバーを一覧表示する
- Google Chat スペースでユーザーのメンバーシップを更新する。
- ユーザーまたは Chat アプリをスペースに招待または追加する。