diff --git a/endpoints/getting-started/openapi-appengine.yaml b/endpoints/getting-started/openapi-appengine.yaml index 79125d1c54..9aea095092 100644 --- a/endpoints/getting-started/openapi-appengine.yaml +++ b/endpoints/getting-started/openapi-appengine.yaml @@ -4,7 +4,7 @@ info: description: "A simple Google Cloud Endpoints API example." title: "Endpoints Example" version: "1.0.0" -host: "[YOUR-PROJECT-ID].appspot.com" +host: "YOUR-PROJECT-ID.appspot.com" # [END swagger] basePath: "/" consumes: @@ -104,3 +104,4 @@ securityDefinitions: # Your OAuth2 client's Client ID must be added here. You can add # multiple client IDs to accept tokens from multiple clients. x-google-audiences: "YOUR-CLIENT-ID" + diff --git a/endpoints/getting-started/openapi.yaml b/endpoints/getting-started/openapi.yaml index ac50b8d19c..840f2bd290 100644 --- a/endpoints/getting-started/openapi.yaml +++ b/endpoints/getting-started/openapi.yaml @@ -6,9 +6,6 @@ info: version: "1.0.0" host: "echo-api.endpoints.YOUR-PROJECT-ID.cloud.goog" # [END swagger] -# For App Engine deployments, delete the above "host:" line and remove the "# " -# from the following line. Then change YOUR-PROJECT-ID to your project id. -# host: "YOUR-PROJECT-ID.appspot.com" basePath: "/" consumes: - "application/json"