Cloud Endpoints Frameworks was formerly called Endpoints. To distinguish between the two versions, this page refers to the new version as Endpoints Frameworks version 2.0, and the older version as Endpoints version 1.0. This page describes how to migrate an Cloud Endpoints version 1.0 application to Endpoints Frameworks version 2.0. The migration consists of a library change and an application configuration change, but you don't have to make any changes to your code.
Benefits
Endpoints version 2.0 brings a number of benefits, including:
- Reduced request latency.
- Better integration with App Engine features, such as custom domains.
- New API management features.
Endpoints Frameworks version 2.0 doesn't affect the interfaces to your API. Existing clients continue to work after migration without any client-side code changes.
Feature overview
The following features are backward compatible with Endpoints version 1.0:
- JSON-REST protocol, which is used by all Google client libraries
- Discovery service
- All existing authentication features (OAuth2/OpenID Connect)
- Client library support for generated clients
- CORS (for JavaScript callers not using Google JavaScript client library)
- API Explorer
Traffic splitting is unavailable.
Currently excluded features
The following features are unavailable. If you require any of these, please submit a feature request.
- JSON-RPC protocol, which is required for legacy iOS clients. To create iOS clients for your Endpoints Frameworks version 2.0 API, we recommend that you use Google APIs Objective-C client library for REST APIs.
- Automatic ETags
- Automatic
kind
fields - IDE integration
fields
partial responses- Automatic PATCH API method creation
Migrating from Endpoints version 1.0
To migrate from version 1.0:
Create a subfolder named
/lib
in your application's main directory.Install the library from your application's main directory:
pip install -t lib google-endpoints --ignore-installed
Remove the
- name: endpoints
andversion 1.0
entries from your application'sapp.yaml
file under thelibraries
section. For example:libraries: - name: endpoints #Remove version: 1.0 #Remove
In the
libraries
section in theapp.yaml
file, add the following:libraries: - name: pycrypto version: 2.6 - name: ssl version: 2.7.11
Endpoints Frameworks requires these versions of the
pycrypto
andssl
libraries.In the
handlers
section in theapp.yaml
file, change theurl
directive from- url: /_ah/spi/.*
to- url: /_ah/api/.*
.In the root directory of your application, create or modify a file named
appengine_config.py
to include the following:from google.appengine.ext import vendor vendor.add('lib')
Check your API version string. Your version string, specified in the
@endpoints.api(version='v1', ...)
decorator, appears in your API's path. If you specify a version string compatible with the SemVer standard, only the major version number appears in your API's path when you deploy your API. For example, an API calledecho
with version2.1.0
would have a path such as/echo/v2
. If you update theecho
API to version2.2.0
and deploy a backwards-compatible change, the path remains/echo/v2
. This allows you to update the API version number when you make a backwards-compatible change without breaking existing paths for your clients. But if you update theecho
API to version3.0.0
(because you are deploying a breaking change), the path is changed to/echo/v3
.Redeploy your Endpoints Frameworks application.
Verifying a new deployment
To verify that the new framework is serving traffic:
- Send some requests to the new deployment.
- Visit the Cloud Logging page for your project.
- If requests are shown with having paths beginning with
/_ah/api
, then Endpoints Frameworks version 2.0 is now serving your API. The logs shouldn't show any requests with paths beginning with/_ah/spi
. These requests indicate that the Endpoints version 1.0 proxy is still serving requests.
Adding API management
Endpoints Frameworks version 2.0 adds API management features, including:
- API key management
- API sharing
- User authentication
- API metrics
- API logs
To get started, go to the Getting started with Endpoints Frameworks for Python page.
Troubleshooting
This section describes common erratic behaviors when migrating to Endpoints Frameworks version 2.0 and suggested solutions.
API returns 404
errors, but API Explorer still lists APIs correctly
You are required to remove the old version 1.0 Endpoints
configuration when migrating to Endpoints Frameworks version 2.0. If
the old configuration is still present in the application's configuration, the
Endpoints service continues to treat the app as a version 1.0
app. You might see requests in your App Engine logs sent to /_ah/spi
,
which result in HTTP 404
errors sent to the client.
Remove the following lines, from the
app.yaml
file if they are present:handlers: - url: /_ah/spi/.* script: ...
Make sure the
handlers
section in yourapp.yaml
file has the correct path:handlers: # The endpoints handler must be mapped to /_ah/api. - url: /_ah/api/.* script: ...
Error message: ImportError: cannot import name locked_file
This happens if your dependencies contain a version of the oauth2client
library that is incompatible with App Engine. See the
known issue.