取得 Google Workspace 訂閱方案的詳細資料

本頁面說明如何使用 subscriptions.get() 方法取得 Google Workspace 訂閱的詳細資料。

透過使用者驗證方法呼叫此方法時,這個方法會傳回使用者授權的訂閱項目相關詳細資料。當您使用應用程式驗證功能時,這個方法可能會傳回應用程式的任何訂閱項目的詳細資料。

必要條件

Apps Script

  • Apps Script 專案:
    • 請使用 Google Cloud 專案,而非 Apps Script 自動建立的預設專案。
    • 針對新增用來設定 OAuth 同意畫面的所有範圍,您也必須將範圍新增至 Apps Script 專案的 appsscript.json 檔案中。 例如:
    • "oauthScopes": [
        "https://www.googleapis.com/auth/chat.messages.readonly"
      ]
          
    • 啟用 Google Workspace Events 進階服務。

Python

  • Python 3.6 或更高版本
  • pip 套件管理工具
  • 最新的 Python 專用 Google 用戶端程式庫。如要安裝或更新,請在指令列介面中執行下列指令:
      pip3 install --upgrade google-api-python-client google-auth-oauthlib
      
  • Google Workspace 訂閱方案。如要建立訂閱項目,請參閱「建立訂閱項目」一文。

  • 需要驗證

    • 如要進行使用者驗證,您的範圍必須支援至少一個訂閱項目的事件類型。如要識別範圍,請參閱「依事件類型劃分的範圍」一文。
    • 如要驗證應用程式,必須設定 chat.bot 範圍 (僅限 Google Chat 應用程式)。

取得使用者授權的訂閱項目

下列程式碼範例會使用使用者驗證方式取得 Subscription 資源的相關詳細資料。以使用者的身分進行驗證時,這個方法會傳回使用者授權應用程式建立的訂閱項目。

如何取得使用者授權的訂閱項目:

Apps Script

  1. 在 Apps Script 專案中,建立名為 getSubscription 的新指令碼檔案,並新增下列程式碼:

    function getSubscription() {
      // The name of the subscription to get.
      const name = 'subscriptions/SUBSCRIPTION_ID';
    
      // Call the Workspace Events API using the advanced service.
      const subscription = WorkspaceEvents.Subscriptions.get(name);
      console.log(subscription);
    }
    

    更改下列內容:

    • SUBSCRIPTION_ID:訂閱項目的 ID。如要取得 ID,您可以使用下列任一工具:
      • uid 欄位的值。
      • name 欄位中代表的資源名稱 ID。舉例來說,如果資源名稱是 subscriptions/subscription-123,請使用 subscription-123
  2. 如要取得訂閱,請在 Apps Script 專案中執行 getSubscription 函式。

Python

  1. 在工作目錄中,建立名為 get_subscription.py 的檔案,並新增下列程式碼:

    """Get subscription."""
    
    from google_auth_oauthlib.flow import InstalledAppFlow
    from googleapiclient.discovery import build
    
    # Specify required scopes.
    SCOPES = ['SCOPE']
    
    # Authenticate with Google Workspace and get user authentication.
    flow = InstalledAppFlow.from_client_secrets_file('client_secrets.json', SCOPES)
    CREDENTIALS = flow.run_local_server()
    
    # Call the Workspace Events API using the service endpoint.
    service = build(
        'workspaceevents',
        'v1',
        credentials=CREDENTIALS,
    )
    
    NAME = 'subscriptions/SUBSCRIPTION_ID'
    subscription = service.subscriptions().get(name=NAME).execute()
    print(subscription)
    

    更改下列內容:

    • SCOPE支援訂閱中至少一個事件類型的 OAuth 範圍。舉例來說,如果訂閱項目收到更新過的 Chat 聊天室事件,則為 https://www.googleapis.com/auth/chat.spaces.readonly
    • SUBSCRIPTION_ID:訂閱項目的 ID。如要取得 ID,您可以使用下列任一工具:
      • uid 欄位的值。
      • name 欄位中代表的資源名稱 ID。舉例來說,如果資源名稱是 subscriptions/subscription-123,請使用 subscription-123
  2. 在工作目錄中,確認您已儲存 OAuth 用戶端 ID 憑證並命名為 client_secrets.json。程式碼範例會使用這個 JSON 檔案向 Google Workspace 進行驗證,並取得使用者憑證。如需操作說明,請參閱「建立 OAuth 用戶端 ID 憑證」。

  3. 如要取得訂閱項目,請在終端機中執行下列指令:

    python3 get_subscription.py