- https://googledrive.com/host/0B19L0O2pMOKjVUJBV0tEb0psVlU/#1
- https://developers.google.com/appengine/docs/python/endpoints
- https://github.com/Scarygami/gdg-endpoint-demo
- http://greenido.wordpress.com/2012/07/07/html5-modern-web-app-and-google-cloud-endpoints
- https://github.com/GoogleCloudPlatform/appengine-endpoints-tictactoe-python
- https://github.com/GoogleCloudPlatform/appengine-endpoints-tictactoe-android
- https://github.com/GoogleCloudPlatform/appengine-endpoints-helloendpoints-python
- https://github.com/GoogleCloudPlatform/appengine-endpoints-helloendpoints-android
- https://github.com/GoogleCloudPlatform/endpoints-proto-datastore
- https://github.com/GoogleCloudPlatform/appengine-endpoints-angular-todos-python
- https://github.com/GoogleCloudPlatform?query=angular
- https://cloud.google.com/developers/articles/angularjs-cloud-endpoints-recipe-for-building-modern-web-applications
- https://github.com/dart-gde/discovery_api_dart_client_generator
- https://github.com/dart-gde/dart_api_client_examples/tree/master/web
- https://github.com/Scarygami/gdg-endpoint-demo/blob/master/dart_gdgdemo_v1_api_client/lib/src/common/schemas.dart
- https://github.com/dart-gde/dart-google-oauth2-library
- https://github.com/dart-gde/chrome.dart
- http://life.scarygami.net/discovery
<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
});
}