Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)



Overview of Google Cloud Endpoints

Python | Java | PHP | Go

Google Cloud Endpoints consists of tools, libraries and capabilities that allow you to generate APIs and client libraries from an App Engine application, referred to as an API backend , to simplify client access to data from other applications. Endpoints makes it easier to create a web backend for web clients and mobile clients such as Android or Apple's iOS.

For mobile developers, Endpoints provides a simple way to develop a shared web backend and also provides critical infrastructures, such as OAuth 2.0 authentication, eliminating a great deal of work that would otherwise be needed. Furthermore, because the API backend is an App Engine app, the mobile developer can use all of the services and features available in App Engine, such as Datastore , Google Cloud Storage , Mail , Url Fetch , Task Queues , and so forth. And finally, by using App Engine for the backend, developers are freed from system admin work, load balancing, scaling, and server maintenance.

It is possible to create mobile clients for App Engine backends without Endpoints. However, using Endpoints makes this process easier because it frees you from having to write wrappers to handle communication with App Engine. The client libraries generated by Endpoints allow you to simply make direct API calls.

Basic Endpoints architecture

Here's what using an Endpoints API allows you to do:

As shown above, the API backend is an App Engine app that performs business logic and other functions for Android and iOS clients, as well as JavaScript web clients. The functionality of the backend is made available to clients through Endpoints, which exposes an API that clients can call.

Endpoints libraries, tools, and samples

Google Cloud Endpoints provide the following libraries and tools:

Endpoints provides the Tic Tac Toe sample that demonstrates a backend API. Companion client samples for that backend are available:

For more samples, refer to the Getting Started tutorials.

Requirements

To use Endpoints, be sure you're using the latest version of the Google App Engine Java SDK . If you are using the Google Plugin for Eclipse (GPE) to generate endpoints and client libraries, you'll need the latest GPE version.

You'll also need to be familiar with development using Google App Engine and the Java runtime. And finally, you'll need to know how to develop the client of your choice, such as JavaScript web clients, or mobile clients of your choice, such as Android or iOS.

The development process

The general workflow for developing an app using Endpoints is:

  1. Create your backend API project (using Maven to do this is the easiest method), then write your API backend code.
  2. Annotate your API backend code, so classes and client libraries can be generated from it. (Alternatively, use the Google Plugin for Eclipse , which can annotate for you.)
  3. Generate the client library using Maven, or alternatively, the endpoints.sh command line tool. (Another alternative is to use the Google Plugin for Eclipse to generate the client library.)
  4. Write your client app, using the client library when making calls to the API backend.

Getting Started

To get started, follow the tutorial for writing a backend API .

Authentication required

You need to be signed in with Google+ to do that.

Signing you in...

Google Developers needs your permission to do that.