X Tutup
Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Hello World Google Cloud Endpoints for App Engine

This sample provides an example of a migration from the prior version of Google Cloud Endpoints Frameworks to new Google Cloud Endpoints Frameworks for App Engine using a Discovery Document. Additionally, this sample provides an example of using the new App Engine Maven and Gradle plugins for deploying your Google App Engine Standard applications.

This sample contains comments of how to use the prior Endpoints Frameworks as well. For clarity, the prior Endpoints Frameworks and the new Endpoints Frameworks are denoted as Endpoints Frameworks v1.0 and Endpoints Frameworks v2.0, respectively.

Google Cloud Endpoints Frameworks v2.0 provides new functionality which may require payment and uses an OpenAPI specification. The OpenAPI development process is explained here and a quickstart is provided here.

Products

Language

APIs

Build and Deployment Plugins

Discovery Document and Client Library Generation Plugins

Setup

  1. Change YOUR-PROJECT-ID with your project id in the hostname parameter defined in either the Maven or Gradle build script. Hostname is used when a discovery document is generated.

    • Maven - pom.xml
    • Gradle - build.gradle
  2. [Optional]: User Authenticating with Google Accounts in Web Clients

    1. Update the WEB_CLIENT_ID in Constants.java to reflect the web client ID you have registered in the Credentials on Developers Console for OAuth 2.0 client IDs.

    2. Update the value of google.devrel.samples.helloendpoints.CLIENT_ID in base.js to reflect the web client ID you have registered in the Credentials on Developers Console for OAuth 2.0 client IDs.

  3. [Optional]: User Authenticating with Google Accounts in other Applications Types

  4. [Optional]: Use Cloud Endpoints Frameworks v2.0 Maven and Gradle client library generation plugins with Cloud Endpoints Frameworks v1.0.

    • Uncomment Endpoints Frameworks v1.0 sections and comment Endpoints Frameworks v2.0 sections in the following files.

        pom.xml
        build.gradle
        src/main/webapp/WEB-INF/web.xml
      

Build and Deployment

Maven

  1. Build and Run the application locally at http://localhost:8080 by using:

    mvn clean appengine:run

  2. Explore local server's API explorer by browsing to:

    http://localhost:8080/_ah/api/explorer

  3. Generate the discovery document located at target/discovery-docs/helloworld-v1-rest.discovery by using:

    mvn endpoints-framework:discoveryDocs

  4. Generate the client library located at target/client-libs/helloworld-v1-java.zip by using:

    mvn endpoints-framework:clientLibs

  5. Build and Deploy your application to Google App Engine by using:

    mvn clean appengine:deploy

Gradle

  1. Build and Run the application locally at http://localhost:8080 by using:

    ./gradlew clean appengineRun

    Windows users: Use gradlew.bat instead of ./gradlew

  2. Explore local server's API explorer by browsing to:

    http://localhost:8080/_ah/api/explorer

  3. Generate the discovery document located at build/endpointsDiscoveryDocs/helloworld-v1-rest.discovery by using:

    ./gradlew endpointsDiscoveryDocs

  4. Generate the client library located at build/endpointsClientLibs/helloworld-v1-java.zip by using:

    ./gradlew endpointsClientLibs

  5. Deploy your application to Google App Engine by using:

    ./gradlew appengineDeploy

X Tutup