You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
0. Deploy the API implementation code by invoking:
123
+
124
+
gradle appengineDeploy
125
+
126
+
The first time you upload a sample app, you may be prompted to authorize the
127
+
deployment. Follow the prompts: when you are presented with a browser window
128
+
containing a code, copy it to the terminal window.
129
+
130
+
<details>
131
+
<summary>ERROR: (gcloud.app.deploy) The current Google Cloud project [...] does not contain an App Engine application.</summary>
132
+
If you create a fresh cloud project that doesn't contain a appengine application you may receive this Error:
133
+
134
+
ERROR: (gcloud.app.deploy) The current Google Cloud project [...] does not contain an App Engine application. Use `gcloud app create` to initialize an App Engine application within the project.
135
+
136
+
In that case just execute `gcloud app create`, you will be asked to select a region and the app will be created. Then run gradle appengineDeploy again.
137
+
</details>
138
+
139
+
0. Wait for the upload to finish.
140
+
141
+
### Sending a request to the sample API
55
142
56
143
After you deploy the API and its configuration file, you can send requests
0 commit comments