In questa pagina viene descritto come configurare l'ambiente di sviluppo per utilizzarlo
l'API Service Management. L'approccio più semplice all'utilizzo
l'API Service Management (oltre al semplice utilizzo
Console Google Cloud
UI web) e il nostro consiglio per la maggior parte dei casi d'uso operativi è tramite
gcloud
interfaccia a riga di comando. Se
devi programmare in base all'API Service Management, ti consigliamo
puoi utilizzare uno dei nostri
librerie client.
Per fare esperimenti con l'API, puoi seguire le istruzioni di configurazione alternative
di seguito e utilizza il comando curl
per sperimentare con l'API senza configurare un
di sviluppo delle applicazioni.
Configura con gcloud
- 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
Configurazione per chiamare direttamente l'API
Questa sezione descrive i passaggi di base necessari per configurare il tuo
per sperimentare l'API Service Management utilizzando
Comando curl
. È rivolto agli sviluppatori che devono programmare contro
l'API Service Management.
Impostazione iniziale
- 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
Esegui il test con curl
Definisci un alias shell pratico per chiamare le API REST di Google:
$ alias gcurl='curl -H "Authorization: Bearer $(gcloud auth print-access-token)" -H "Content-Type: application/json"'
Prova a elencare i servizi accessibili al pubblico:
$ gcurl https://servicemanagement.googleapis.com/v1/services
Se viene visualizzato un elenco di servizi, la configurazione è andata a buon fine.
Passaggi successivi
Se crei un servizio gestito e non stai utilizzando Cloud Endpoints:
- Segui la sezione Creare ed eliminare servizi per creare servizi gestiti. Questo creerà un servizio gestito di primo livello risorsa.
Consulta la sezione Gestione delle configurazioni dei servizi. per inviare configurazioni del servizio per descrivere le funzionalità usato dal servizio.
Segui le istruzioni riportate in Implementazione delle configurazioni dei servizi per eseguire l'implementazione delle configurazioni dei servizi.