對於在 HTTP 端點上建構的 Google Chat 應用程式,本節說明如何 驗證傳送至端點的要求是否來自 Chat。
如何將互動事件分派到 Chat 應用程式的
端點時,Google 會向您的服務發出要求。如何驗證要求
來自 Google,Chat 也提供了
不記名權杖
加到 Authorization
標頭中。例如:
POST
Host: yourappurl.com
Authorization: Bearer AbCdEf123456
Content-Type: application/json
User-Agent: Google-Dynamite
上述範例中的字串 AbCdEf123456
是權杖授權權杖。這是 Google 產生的密碼編譯權杖。權杖權杖的類型和 audience
欄位的值,取決於您在設定 Chat 應用程式時所選取的驗證對象類型。
如果您已使用 Cloud Functions 或 Cloud Run 實作 Chat 應用程式,Cloud IAM 會自動處理權杖驗證。個人中心 只要將 Google Chat 服務帳戶新增為授權叫用者即可。 如果您的應用程式實作自己的 HTTP 伺服器,您可以驗證不記名權杖 使用開放原始碼 Google API 用戶端程式庫:
- Java:https://github.com/google/google-api-java-client
- Python:https://github.com/google/google-api-python-client
- Node.js:https://github.com/google/google-api-nodejs-client
- .NET:https://github.com/google/google-api-dotnet-client
如果權杖未驗證 Chat 應用程式,
服務應以 HTTPS 回應代碼回應要求
401 (Unauthorized)
。
使用 Cloud Functions 或 Cloud Run 驗證要求
如果您使用 Cloud Functions 或 Cloud Run 實作函式邏輯,請務必在 Chat 應用程式的連線設定中,於驗證對象欄位選取「HTTP 端點網址」,並確認設定中的 HTTP 端點網址與 Cloud Function 或 Cloud Run 端點的網址相符。
接著,您需要將 Google Chat 服務帳戶 chat@system.gserviceaccount.com
授權為叫用者。
下列步驟說明如何使用 Cloud Functions (第 1 代):
控制台
將函式部署至 Google Cloud 之後:
前往 Google Cloud 控制台中的「Cloud Functions」頁面。
在 Cloud Functions 清單中,勾選接收端旁的核取方塊 函式。(請勿按一下函式本身)。
按一下畫面頂端的「權限」,「Permissions」(權限) 面板 開啟後,
按一下「新增主體」。
在「New principals」(新增主體) 欄位中輸入
chat@system.gserviceaccount.com
。選取「Cloud Functions」角色 >Cloud Functions 叫用者,來自 「請選取角色」下拉式選單。
按一下 [儲存]。
gcloud
使用 gcloud functions add-iam-policy-binding
指令:
gcloud functions add-iam-policy-binding RECEIVING_FUNCTION \
--member='serviceAccount:chat@system.gserviceaccount.com' \
--role='roles/cloudfunctions.invoker'
將 RECEIVING_FUNCTION
替換為
Chat 應用程式的功能。
以下步驟說明如何使用 Cloud Functions (第 2 代) 或 Cloud Run 服務:
控制台
將函式或服務部署至 Google Cloud 之後:
前往 Google Cloud 控制台中的 Cloud Run 頁面:
在 Cloud Run 服務清單中,按一下接收函式旁的核取方塊。(請勿按一下函式本身)。
按一下畫面頂端的「權限」,「Permissions」(權限) 面板 開啟後,
按一下「新增主體」。
在「New principals」(新增主體) 欄位中輸入
chat@system.gserviceaccount.com
。從「請選擇角色」下拉式選單中,依序選取「Cloud Run」>「Cloud Run 叫用者」角色。
按一下 [儲存]。
gcloud
使用 gcloud functions add-invoker-policy-binding
指令:
gcloud functions add-invoker-policy-binding RECEIVING_FUNCTION \
--member='serviceAccount:chat@system.gserviceaccount.com'
將 RECEIVING_FUNCTION
替換為
Chat 應用程式的功能。
使用 ID 權杖驗證 HTTP 要求
如果 Chat 應用程式的「Authentication Audience」欄位
連線設定設為
HTTP 端點網址。
要求中的不記名授權權杖是 Google 簽署的 OpenID Connect
(OIDC) ID 權杖。
email
欄位已設為 chat@system.gserviceaccount.com
。「Authentication Audience」欄位會設為您設定 Google Chat 傳送要求至 Chat 應用程式的網址。舉例來說,如果 Chat 應用程式的已設定端點為 https://example.com/app/
,則 ID 權杖中的「Authentication Audience」欄位會是 https://example.com/app/
。
下列範例說明如何驗證不記名權杖是由 Google Chat,並透過 Google OAuth 用戶端程式庫為應用程式指定目標對象。
Java
Python
Node.js
使用專案編號 JWT 驗證要求
如果 Chat 應用程式的「Authentication Audience」欄位
連線設定設為 Project
Number
,要求中的不記名授權權杖是自行簽署的授權權杖
JSON Web Token (JWT),
由 chat@system.gserviceaccount.com
核發及簽署。
audience
欄位會設為您使用的 Google Cloud 專案編號
瞭解如何建構 Chat 應用程式舉例來說
Chat 應用程式的 Cloud 專案編號為
1234567890
,然後 JWT 中的 audience
欄位為 1234567890
。
以下範例說明如何驗證憑證是 Google Chat 核發,並且使用 Google OAuth 用戶端程式庫指定您的專案。