Auf dieser Seite wird beschrieben, wie Sie Ihre Entwicklungsumgebung für die Arbeit mit der Service Management API einrichten. Die einfachste Methode,
Service Management API (außer die Verwendung der
Google Cloud Console
Web-UI) und empfehlen wir für die meisten operativen Anwendungsfälle das
gcloud
Befehlszeile aufrufen. Für eine Programmierung unter Einbindung der Service Management API empfehlen wir eine unserer verfügbaren Clientbibliotheken.
Sie können die unten stehende alternative Anleitung sowie den Befehl curl
verwenden, um die API zu testen, ohne eine komplette Anwendungsentwicklungsumgebung einzurichten.
Mit gcloud einrichten
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Service Management API.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Service Management API.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
Direkten API-Aufruf einrichten
In diesem Abschnitt werden die grundlegenden Schritte zum Einrichten Ihrer lokalen Umgebung und zum Testen der Service Management API mit dem curl
-Befehl beschrieben. Diese Schritte richten sich an Entwickler, die unter Einbindung der Service Management API programmieren.
Ersteinrichtung
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
Create or select a Google Cloud project.
-
Create a Google Cloud project:
gcloud projects create PROJECT_ID
Replace
PROJECT_ID
with a name for the Google Cloud project you are creating. -
Select the Google Cloud project that you created:
gcloud config set project PROJECT_ID
Replace
PROJECT_ID
with your Google Cloud project name.
-
-
Enable the Service Management API:
gcloud services enable servicemanagement.googleapis.com
-
Grant roles to your user account. Run the following command once for each of the following IAM roles:
roles/servicemanagement.admin
gcloud projects add-iam-policy-binding PROJECT_ID --member="USER_IDENTIFIER" --role=ROLE
- Replace
PROJECT_ID
with your project ID. -
Replace
USER_IDENTIFIER
with the identifier for your user account. For example,user:myemail@example.com
. - Replace
ROLE
with each individual role.
- Replace
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
Create or select a Google Cloud project.
-
Create a Google Cloud project:
gcloud projects create PROJECT_ID
Replace
PROJECT_ID
with a name for the Google Cloud project you are creating. -
Select the Google Cloud project that you created:
gcloud config set project PROJECT_ID
Replace
PROJECT_ID
with your Google Cloud project name.
-
-
Enable the Service Management API:
gcloud services enable servicemanagement.googleapis.com
-
Grant roles to your user account. Run the following command once for each of the following IAM roles:
roles/servicemanagement.admin
gcloud projects add-iam-policy-binding PROJECT_ID --member="USER_IDENTIFIER" --role=ROLE
- Replace
PROJECT_ID
with your project ID. -
Replace
USER_IDENTIFIER
with the identifier for your user account. For example,user:myemail@example.com
. - Replace
ROLE
with each individual role.
- Replace
Mit curl testen
Definieren Sie ein geeignetes Shell-Alias zum Aufrufen der Google REST APIs:
$ alias gcurl='curl -H "Authorization: Bearer $(gcloud auth print-access-token)" -H "Content-Type: application/json"'
Versuchen Sie, öffentlich zugängliche Dienste aufzulisten:
$ gcurl https://servicemanagement.googleapis.com/v1/services
Wenn eine Liste der Dienste angezeigt wird, war die Einrichtung erfolgreich.
Weitere Informationen
Wenn Sie Cloud Endpoints nicht zum Erstellen eines verwalteten Dienstes verwenden, gehen Sie so vor:
- Folgen Sie den Schritten in Dienste erstellen und löschen, um eine Ressource für verwaltete Dienste auf oberster Ebene zu erstellen.
Folgen Sie den Schritten unter Dienstkonfigurationen verwalten, um Dienstkonfigurationen zu senden, die vom Dienst verwendete Funktionen beschreiben.
Informationen zum Bereitstellen Ihrer Dienstkonfigurationen finden Sie unter Dienstkonfigurationen bereitstellen.