Questions tagged [google-cloud-endpoints]

Google Cloud Endpoints is a technology developed by Google for use on Google App Engine to allow developers to develop and host APIs easily, and to generate strongly-typed client libraries for Java (Android) and Objective-C (iOS), and dynamically-typed libraries for JavaScript.

Google Cloud Endpoints is a technology developed by Google for use on Google App Engine to allow developers to develop and host APIs easily.

Features

  • Support for Java and Python runtimes
  • Built on Google's API infrastructure - it works with many of the same tools and libraries used for Google's own APIs, such as the APIs Explorer and APIs Console
  • Automatically-generated, statically-typed client libraries for Android and iOS - these libraries are using the same Google-authored Java and Objective-C libraries you would use to access other Google-provided APIs such as the Calendar API
  • Dynamically-typed JS client library - again, the same library you use to access other Google-provided APIs in JS, which is called Google JavaScript client library
  • Built in support for OAuth 2
  • Integration with the Google Plugin for Eclipse - this allows you to automatically create an API based on a model, or an App Engine application to back an existing Android app
  • Support for local development - you can build and test your API using the App Engine development environment, just as with other App Engine features

Learn More

Check out the Java and Python documentation for more details on using Endpoints.

2491 questions
1
vote
0 answers

Eclipse hangs during creation of cloud endpoints

I am using latest google plugin for eclipse (1.7.5) but when ever I try to create an app engine connected android project, Eclipse hangs up during "Generation of cloud endpoint Library" Same is the case when I create a google app engine project and…
1
vote
3 answers

Google Cloud Endpoints doesn't know about the Work class from Objectify 4 Transaction, causing ClassNotFoundException

I created a very simple Objectify/Endpoints class. import static mypackage.OfyService.ofy; import com.google.api.server.spi.config.Api; import com.google.api.server.spi.config.ApiMethod; import com.googlecode.objectify.Work; @Api(name = "testapi",…
Richard Russell
  • 1,105
  • 1
  • 10
  • 19
1
vote
1 answer

Google App Engine ApiMethod with parameters doesn't work

So far I was able to find all answers to my questions in Google, but this time I gave up and created an account... I started using GAE for Android application in Eclipse, and I'm writing an API, with, of course, ApiMethods. One of the methods I…
1
vote
1 answer

Eclipse Client Project configuration for Google Cloud Endpoints

What is the recommended Eclipse (4.2) configuration for building a Google Cloud Endpoints Android Client Project? Running Google -> Generate Cloud Endpoint Client Library yields a /libs within my Server project that…
1
vote
1 answer

Error trying to insert a new object into app engine database

This is my first run at getting app engine working so maybe I just missed a step somewhere but I am trying to insert stuff into the app engine database like this Builder endpointBuilder = new…
tyczj
  • 71,600
  • 54
  • 194
  • 296
1
vote
2 answers

Using Skue or similar frameworks to build REST API on google-app-engine

Searching for ways to build REST APIs, I found skue (https://code.google.com/p/skue/). However there is not much information on the site. My plan is to build a rest api as follows strictly: Models << Business logics << Restful Resources. What this…
kasavbere
  • 5,873
  • 14
  • 49
  • 72
1
vote
1 answer

Google cloud endpoint .api file being deleted from the war when switching to objectify

Having created a successfully (locally) deployed service using Google cloud endpoints I wanted to switch from using JDO to Objectify instead. Having update the endpoint class with the objectify code I have an issue where the .api file in the war is…
1
vote
2 answers

Appengine connected Android prj got 404 on mobile test

I got my android+appengine application (endpoint) up and running, everything works fine on my local machine, so I decided to upload my appengine code so that I can try accessing data through the Android application directly on my mobile phone. When…
1
vote
2 answers

Error generating cloud endpoint in Eclipse 4.2

During the last days I keep getting this error while trying to generate cloud endpoint library within Eclipse. Here's the full error log: eclipse.buildId=I20120608-1400 java.version=1.6.0_31 java.vendor=Sun Microsystems Inc. BootLoader constants:…
0
votes
1 answer

How can I use my App Engine API to run an executable on Compute Engine?

My project structure is roughly as follows: Frontend - built with Svelte, SvelteKit, and hosted on App Engine API - built with FastAPI, also hosted on App Engine (*1) Backend - proprietary code/executable stored on a Compute Engine VM I will use…
0
votes
0 answers

Google Cloud Endpoints Optional Authentication for ESPv2 via YAML Upload

I'm completely open to correction on this but it looks like perhaps Google Cloud ESPv2 may not properly implement optional security - it seems to insist on a JWT even when it is only one of the methods and the other is no security. Of course, I may…
0
votes
0 answers

Vertex AI endpoint logs not appearing on Logs Explorer

I have deployed the vertex AI endpoint through Python API below is the code snippet, but logs are not appearing in Logs Explorer. model = aiplatform.Model.upload( local_model=local_model, display_name=model_display_name,…
0
votes
0 answers

VertexAI Endpoint - Unable to coerce value

I have a Custom Class that turns a Pandas Dataframe into a dataset consisting of a list of lists of 7-day periods with a batch size of 32. Giving some context, this is the code: def make_dataset(self, dataframe): grouped_df = list() return…
0
votes
0 answers

Failed startup of context c.g.a.r.j.AppEngineWebAppContext due to FeatureNotEnabledException: app_identity_service.GetAccessToken

After adding Google Storage to a Google Endpoints app written in Java, the web instances seem not to be able to start up anymore, when deployed to GAE. However, all works fine when run locally (mvn appengine:run). Exception from the logs: Failed…
0
votes
0 answers

Python function hosted in GCP, called from flutter project

I am building an app in flutter where one of the features checks image similarity. I have figured out the python code for this imageSimilarity(image1, image2) function. I am a having trouble deploying this function in GCP and calling this function…