認証と認証
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
SAS Portal API と統合する場合は、サービス アカウントを使用して認証を行うことを強くおすすめします。必要に応じて、サービス アカウントを作成します。サービス アカウント キーを作成するときは、キータイプとして必ず JSON を選択してください。完了すると、サービス アカウント キーがブラウザのデフォルトの場所にダウンロードされます。さらに、サービス アカウントに「プロジェクト オーナー」のロールを付与してください。
次に、サービス アカウントの認証を署名なしトークンとして指定する必要があります。cURL
で HTTP リクエストを行うなど、SAS Portal API を直接呼び出す場合は、Authorization
ヘッダーで署名なしトークンとして認証を渡します。サービス アカウントで署名なしトークンを取得する手順は、次のとおりです。
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} を認証トークンに設定します。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2022-09-26 UTC。
[[["わかりやすい","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 UTC。"],[[["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."]]],[]]