刪除聊天室

本指南說明如何在 Google Chat API 的 Space 資源上使用 delete() 方法,在不再需要時刪除命名空間。刪除聊天室後,聊天室內的所有內容都會一併刪除,包括訊息和附件。

如果您是 Google Workspace 管理員,可以呼叫 delete() 刪除 Google Workspace 機構中的任何已命名聊天室。

Space 項資源 代表使用者和 Chat 擴充應用程式可以傳送訊息的地方 分享檔案及協同合作聊天室分為以下幾種類型:

  • 即時訊息 (DM) 是指兩位使用者或使用者與 Chat 應用程式之間的對話。
  • 群組通訊是指三位以上使用者與 Chat 應用程式之間的對話。
  • 已命名的聊天室是使用者傳送訊息、共用檔案、 這項原則著重於透過對開放式探究 嚴謹治學、誠信與合作的堅持來達到上述目標

必要條件

Node.js

以使用者身分刪除已命名聊天室

如何刪除 Google Chat 中的現有聊天室: 使用者驗證,傳遞 包括:

  • 指定 chat.delete 授權範圍。
  • 呼叫 DeleteSpace() 方法。
  • 傳遞要刪除的聊天室 name

刪除聊天室的方法如下:

Node.js

chat/client-libraries/cloud/delete-space-user-cred.js
import {createClientWithUserCredentials} from './authentication-utils.js';

const USER_AUTH_OAUTH_SCOPES = ['https://www.googleapis.com/auth/chat.delete'];

// This sample shows how to delete a space with user credential
async function main() {
  // Create a client
  const chatClient = await createClientWithUserCredentials(USER_AUTH_OAUTH_SCOPES);

  // Initialize request argument(s)
  const request = {
    // Replace SPACE_NAME here
    name: 'spaces/SPACE_NAME'
  };

  // Make the request
  const response = await chatClient.deleteSpace(request);

  // Handle the response
  console.log(response);
}

main().catch(console.error);

如要執行這個範例,請將 SPACE_NAME 替換為空間 name 欄位的 ID。您可以呼叫 ListSpaces() 方法,或是從空格網址複製。

以 Chat 應用程式的形式刪除已命名聊天室

應用程式驗證需要一次性驗證 管理員核准

開啟應用程式驗證功能,你只能刪除由 Chat 擴充應用程式。

如何刪除 Google Chat 中的現有聊天室: 應用程式驗證,通過 包括:

建立 API 金鑰

如要呼叫開發人員預覽版 API 方法,您必須使用 API 探索文件的非公開開發人員預覽版。您必須傳送 API 金鑰,才能驗證要求。

如要建立 API 金鑰,請開啟應用程式的 Google Cloud 專案,然後執行下列操作:

  1. 在 Google Cloud 控制台中,前往「選單」圖示 > API 與服務 >「憑證」

    前往「憑證」

  2. 依序按一下「建立憑證」 「API 金鑰」。
  3. 系統會顯示新的 API 金鑰。
    • 按一下「複製」圖示 複製 API 金鑰,以便用於應用程式的程式碼中。API 金鑰也可能是 列在「API 金鑰」部分專案憑證
    • 按一下「限制金鑰」,即可更新進階設定並限制 API 金鑰的使用方式。詳情請參閱「套用 API 金鑰限制」。

編寫呼叫 Chat API 的指令碼

刪除聊天室的方法如下:

Python

  1. 在工作目錄中,建立名為 chat_space_delete_app.py 的檔案。
  2. chat_space_delete_app.py 中加入以下程式碼:

    from google.oauth2 import service_account
    from apiclient.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.app.delete"]
    
    def main():
        '''
        Authenticates with Chat API using app authentication,
        then deletes the specified space.
        '''
    
        # Specify service account details.
        creds = (
            service_account.Credentials.from_service_account_file('credentials.json')
            .with_scopes(SCOPES)
        )
    
        # Build a service endpoint for Chat API.
        chat = build('chat', 'v1', credentials=creds, discoveryServiceUrl='https://chat.googleapis.com/$discovery/rest?version=v1&labels=DEVELOPER_PREVIEW&key=API_KEY')
    
        # Use the service endpoint to call Chat API.
        result = chat.spaces().delete(
    
              # The space 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.
              name='spaces/SPACE'
    
          ).execute()
    
        # Print Chat API's response in your command line interface.
        # When deleting a space, the response body is empty.
        print(result)
    
    if __name__ == '__main__':
        main()
    
  3. 在程式碼中,請替換下列內容:

    • API_KEY:您建立的 API 金鑰,用於建構 Chat API 的服務端點。

    • 將「SPACE」設為聊天室名稱, 您可以從中取得 spaces.list 方法 或聊天室網址傳送

  4. 在工作目錄中建構並執行範例:

    python3 chat_space_delete_app.py
    

如果成功,回應主體會留白,表示已刪除空間。

以 Google Workspace 管理員身分刪除已命名聊天室

如果您是 Google Workspace 管理員,可以呼叫 DeleteSpace() 方法,刪除 Google Workspace 機構中的任何命名聊天室。

如要以 Google Workspace 管理員身分呼叫這個方法,請按照下列步驟操作:

  • 使用使用者驗證來呼叫方法,並指定支援使用管理員權限呼叫方法的授權範圍
  • 在要求中,將查詢參數 useAdminAccess 指定為 true

如需更多資訊和範例,請參閱 以 Google Workspace 管理員身分管理 Google Chat 聊天室