Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save JosefJezek/5836310 to your computer and use it in GitHub Desktop.

Select an option

Save JosefJezek/5836310 to your computer and use it in GitHub Desktop.
How to Google Cloud Endpoints with Python

How to Google Cloud Endpoints with Python

Angular

Dart

JavaScript

<script src="https://apis.google.com/js/client.js?onload=init"></script>

function init() {
  var ROOT = 'https://<your-app>.appspot.com/_ah/api';
  gapi.client.load('yourApi', 'v1', clientLoaded, ROOT);
}

function clientLoaded() {
  gapi.client.yourApi.method(parameters).execute(function(response) {
    // handle response
  });
}

Android and iOS

Presentation

Libraries

Performance

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment