授權與驗證
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
強烈建議您在整合 SAS Portal API 時透過服務帳戶進行驗證。如有必要,請建立服務帳戶。建立服務帳戶金鑰時,請務必選取 JSON 做為金鑰類型。完成後,服務帳戶金鑰就會下載至瀏覽器的預設位置。此外,請務必為服務帳戶授予「專案擁有者」角色。
接下來,您必須以服務帳戶符記的形式提供服務帳戶驗證。如果您直接呼叫 SAS Portal API (例如透過 cURL
發出 HTTP 要求),則會在 Authorization
標頭中以驗證工具形式傳送驗證為 Bearer 權杖。如要取得服務帳戶的 Bearer 權杖,請按照下列步驟操作:
-
安裝
gcloud
指令列工具。
-
驗證服務帳戶。在下列指令中,將 ${KEY_FILE} 替換為服務帳戶金鑰檔案的路徑:
gcloud auth activate-service-account --key-file ${KEY_FILE}
-
請使用服務帳戶取得授權權杖:
gcloud auth print-access-token
此指令會傳回存取憑證值。
-
使用 API 時,請在 Authorization
標頭中將權杖值做為持有人權杖傳遞。請參閱以下範例:
curl -X GET -H "X-Goog-User-Project: ${CLIENT_PROJECT}" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${TOKEN}" \
"https://sasportal.googleapis.com/v1alpha1/customers"
將 ${CLIENT_PROJECT} 設為您提出要求的 Google Cloud 專案 ID,然後將 ${TOKEN} 設為授權權杖。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2022-09-26 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2022-09-26 (世界標準時間)。"],[[["Service accounts are the recommended authentication method for integrating with the SAS Portal API, requiring the creation of a service account with a JSON key and granting it the \"Project Owner\" role."],["Authentication to the SAS Portal API is done using a Bearer token obtained through the `gcloud` command-line tool by activating the service account and printing an access token."],["When calling the API, include the Bearer token in the `Authorization` header of your request along with the `X-Goog-User-Project` header specifying your Google Cloud Project ID."]]],[]]