Questions tagged [google-cloud-endpoints-v2]

Google Cloud Endpoints Frameworks v2 replaces v1. Migration to v2 encouraged now, required as of August 2, 2018.

Google Cloud Endpoints Frameworks v1 is deprecated as of August 2, 2017. Users of v1 are encouraged to migrate to Cloud Endpoints Frameworks v2 at their earliest convenience. The v1 Endpoints Frameworks will cease to serve traffic on August 2, 2018.

Google Cloud Endpoints Frameworks v2 (in both Java and Python) have been generally available since February 2017. They have a streamlined serving path and include several improvements over v1:

  • they reduce warmup time,
  • they reduce latency per-call, and
  • they have a much better local debugging experience.

They also support custom paths and custom domain names, and they optionally allow API management features such as monitoring and API keys. The new versions are also open sourced (Java, Python).

193 questions
0
votes
1 answer

unable to add additional APIs endpoint classes to GCP endpoints v2

I have started an Google cloud endpoints v2 project using the starter code provided by Google which exposes one API named "echo". My aim is to add another exposed class (one class/api name per business module). Once deployed, all calls to the new…
0
votes
1 answer

Google Cloud Endpoints API-call ServiceException

I have deployed a Cloud Endpoints API to GAE. Everything looks fine, all methods are listed in the API explorer. However, when I try to call any method, I get a 503 error. The following exception is being…
0
votes
1 answer

Google Cloud Endpoints 2.0 with gradle-appengine-plugin

When attempting to upgrade to Google Cloud Endpoints 2.0 using the gradle appengine plugin I run across a conflict with the configuration endpoints. Gradle reports the error: Error:Cannot add a configuration with name 'endpoints' as a configuration…
0
votes
0 answers

Deployment partially failing after updating to Google Cloud Endpoints 2.0

I recently updated my Google AppEngine project to use Cloud Endpoints 2.0. After the migration I tried to deploy my code using appcfg. The deployment is stuck at some point and it keep on retrying. When I check the log, it seems the tool is…
0
votes
1 answer

NoSuchFieldError while implementing Twilio on Google app engine Java

I was following this tutorial for implementing Twilio on Google app engine java project using Google endpoints framework. So, I tried the latest version of Twilio and implemented its 7.1.0 version. The servlet code is `public class SendSmsServlet…
0
votes
2 answers

Error Generating OpenAPI doc using the endpoint-framework-tools (unclear documentation)

(Intro) I am undergoing some tutorials on google cloud endpoint using the google documentation. I have managed to run my first API but i am having an error generating an OpenAPI document using the endpoint-framework-tools (Question/Issue) Long story…
0
votes
1 answer

Google Cloud Endpoints - Authenticating users from internal database

(intro) I am new to Google Cloud Endpoints and I have started to build some HTTP REST services. The purpose of those services is to be consumed directly by the users of my application (Business to Consumer - not business to business). (The…
-1
votes
1 answer

deploy multiple enpoint api google app engine

I have 2 json files, I want to deploy on GCloud With this command: gcloud endpoints services deploy first_file.json gcloud endpoints services deploy second_file.json But after second file deploys the first one is removed. Why?
Python logix
  • 319
  • 3
  • 14
-1
votes
1 answer

using Google cloud endpoint framework 2.0 with custom domain

Im hosting a mobile backend (written in Java) in App engine standard environment using Cloud endpoint framework 2.0, which I can access by this URL https://api-dot-[projectId]-appspot.com/_ah/api/myApi/v1/path now Im trying to use a custom domain…
Tamer Saleh
  • 403
  • 6
  • 17
-1
votes
1 answer

How to access google endpoints 2 with iOS

I had a working app on both iOS and android. I have since migrated my endpoints to version 2 using android studio and my android app is still working. However my iOS one is no longer working but I can not find any documentation explaining how to…
Baz M
  • 75
  • 1
  • 10
-1
votes
1 answer

How to add javascript code to google functions

I want to write a google cloud function that will respond to POST requests. I want to write it in Javascript. I've found Google's tutorial on how to do it, but at the beginning of the tutorial it says that this is a deprecated thing, and I have to…
-1
votes
1 answer

Google app engine Endpoints, Objectify Register

I start google app engine with endpoints, I use objectify for persistence and I have an little question.(I hope !) All my apiMethod start like it : @ApiMethod(path = "getAccount", httpMethod = HttpMethod.GET) public Account…
fabiitch
  • 11
  • 1
  • 3
-4
votes
0 answers

ESPv2 docker image - Bash bad interpreter: No such file or directory

When building an ESPv2 docker image from cloud shell i am getting below error -bash:./gcloud_build_image:/bin/bash^M:bad interpreter: No such file or directory command executed: chmod +x gcloud_build_image ./gcloud_build_image -s \ -c…
1 2 3
12
13