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
0
votes
1 answer

GKE - Using Google managed certificate (mcrt) for SSL connection to Extensible service proxy (ESP)

I am currently trying to set up multiple Cloud Endpoints with my API services running inside of a GKE cluster. I am using an Ingress to expose the ESP to the internet and I have issued a managed certificate to access the proxy using HTTPS. This is…
0
votes
1 answer

Google cloud endpoints service is not listed in api library

I'm trying to share my API (with a custom domain) with the customer( service consumer role), but this API is not listed in the API library. When he tries to open API using the link to generate API key he gots errors. The same problem I have when I…
0
votes
2 answers

Enable CORS for Cloud Run with Cloud Endpoints v1

I have been following an article on Medium to deploy Cloud Endpoints v1 in front of a Cloud Run service hosting a REST API and everything works well. I now have a requirement to enable CORS support and I've added the below configuration to my…
0
votes
0 answers

Why can I exclude servlet-api from endpoints-framework but not from endpoints-management-control-appengine-all?

endpoints-management-control-appengine-all endpoints-framework Both of these packages come with some version of servlet-api-2.5.jar/servlet-api dependency javax.servlet servlet-api Without any…
0
votes
0 answers

Cloud Endpoints + API Keys - exposing own API to third party

I have an API that is hosted on GCP (no matter if its Compute Eninge, App Engine or any other) and I want to give access to it for selected applications that run outside of my company. I do not need such sophisticated service like Apigee (it is too…
eu-saro
  • 11
  • 1
  • 5
0
votes
0 answers

Not able authenticate my Nodejs api using google cloud endpoint and Api key

Please help .i am new to cloud endpoint and not able to authenticate my nodejs api using cloud endpoint and api key . My nodejs api:https://iosapi-dot-ingka-rrm-ugc-dev.appspot.com is working perfectly .However it's not working after authenticate…
0
votes
1 answer

Support for XML in Google Cloud Endpoint

After going through documentations and quick-start tutorials available for Google cloud Endpoint it feels like it currently supports json, where as Google Cloud Storage has support for both json and XML. I wanted to know if Google endpoint supports…
0
votes
1 answer

Can GCP service account keys be used as a direct substitute for Cloud Endpoints api keys?

Is it possible to create google API KEY programmatically? I did see the above question but I wanted to verify its functionality for my use case. I have a REST api deployed to Google App Engine that I want to introduce some api key mechanism for…
0
votes
1 answer

how to manage/design API access on GCP?

Let's say I have 3 datasets on Big Query -- Dataset A, Dataset B and Dataset C. Also, I have 3 clients -- Client A, Client B and Client C. And, I have a simple web app deployed in App Engine with an API, say, '/weather'. The API simply writes a…
0
votes
1 answer

ClassNotFoundException when running `mvn endpoints-framework:openApiDocs`

I'm at the following step of a GCP openapi guide where I have to run a maven command to generate an openapi.json file. I'm following along with my own project, so this may or not be reproducible by just forking the example repository. (so I…
notacorn
  • 3,526
  • 4
  • 30
  • 60
0
votes
1 answer

App Engine ConfigFilter: failed to load service

I am trying to build a GAE java8 app with Cloud Endpoints Framework. I followed this guide. I have set ENDPOINTS_SERVICE_NAME and ENDPOINTS_SERVICE_VERSION in app.yaml and appengine-web.xml. I have also given my App Engine service account Editor AND…
0
votes
1 answer

Cloud endpoints is it possible to protect all API accesses using only a base URL?

As in let's say my api is located at domain/_ah/api. We have domain/_ah/api/getUser, domain/_ah/api/stuff/getStuff, domain/_ah/api/stuff/moreStuff/postMoreStuff. Is it possible to do that by only defining something like this?´ swagger: '2.0' …
0
votes
0 answers

Google Cloud Endpoint API works correct but there are no records in log

I use Google Cloud Endpoint API with Google cloud function backend. I successfully call my functions as defined in the API "swagger" file and see all functions invocations in the cloud function log. But Endpoint services of Google cloud console…
BT3
  • 433
  • 6
  • 21
0
votes
1 answer

How To Pass a Self Signed JWT through Swagger Cloud Endpoints

Okay so I seen this QA here Non-OAuth2 JWT validation with Google Cloud Endpoints This does not quite answer my question. Currently, I have a Node service that generates a Bearer token and passes it to the client. The client then passes the token…
0
votes
1 answer

UnknownHostException: eu-automl.googleapis.com when call to automl API from java application

i tried to call to the API @ POST eu-automl.googleapis.com:443/v1beta1/projects/{project_id}/locations/eu/models/{model_id}:predict via java application and getting error below - **Caused by: java.net.UnknownHostException:…
1 2 3
99
100