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
0 answers

Can Cloud Endpoints authenticate and revoke requests without hitting my backends?

I have created a small nodejs express Application with two routes: GET /mypublicurl GET /myprivateurl and it's running on GKE. I am triggering it via Cloud Endpoints. For authentication i'm using Auth0, also followed this Tutorial from Google. So my…
0
votes
0 answers

Google endpoints is ignoring headers with underscore key

I have integrated my k8s deployment with google endpoints. I have 12 services out of which 11 services are working fine with google endpoints except for one service. When its transferring requests to application container its ignoring the header…
0
votes
1 answer

endpointscfg get an error google.appengine.ext

I want to create end point lib with this command python lib/endpoints/endpointscfg.py get_client_lib java -bs src.service.mobile_api.MobileApi but geting this error from google.appengine.ext import vendor ImportError: No module named…
Python logix
  • 359
  • 4
  • 15
0
votes
2 answers

Authentication issues with Cloud Endpoints Portal

I have Cloud Endpoints Framework implemented in my App Engine project, and I'd like to migrate from the deprecated API Explorer to the new Endpoints Portal, but I have an authentication issue. I have one endpoint with authentication enabled with a…
0
votes
0 answers

OpenApi compilation returning paths as "jsonobject" randomly

I'm developing a Java API which exposes multiple endpoints and it is deployed in a Google Cloud project. We are using Endpoints Framework from Google to compile an openapi.json file. This file is used to deploy endpoints services. For some reason,…
0
votes
0 answers

Error "The caller does not have permission" with Google Cloud Endpoints and Guice

I'm setting up Cloud Endpoints Framework for java in my GCP App Engine project, following the official documentation:…
0
votes
1 answer

Open API Specification Version 2.0

We need to create the openapi v2.0 specification documents for APIs. We are using spring mvc (version 4) framework and build restful web services using JAX-RS. Need to create the openapi.yaml file to upload to Google Cloud Platform to configure…
0
votes
2 answers

how to identify which VM instances are using v0.1 and v1beta1 endpoints for app engine?

I have got an mail saying Legacy GAE and GCF Metadata Server endpoints will be turned down on April 30, 2020. I need to update my metadata server endpoints to v1. But how do I know the current versions of my metadata server endpoints. I have…
Himabindu
  • 634
  • 8
  • 22
0
votes
1 answer

google appengine Unauthorized status 401

When i visit the endpoint '/api/v1/users/me/data/csv', i receive the following message: { "error": { "title": "Unauthorized", "message": "You are not authorized to perform that action. Please use the api_key parameter with your…
0
votes
0 answers

Customize the error when using Google App engine standard Endpoint Security using API KEY

I am building an API and using Google App engine standard environment, Java 8 runtime. The REST api itself is built over guice + google endpoints apis. I have configured the API Key based security for the endpoint as well. The issue I am facing is…
jayaram S
  • 580
  • 6
  • 13
0
votes
1 answer

HTTP Endpoint in GCP

I'm trying to download media files from Cloud Storage through an HTTP endpoint. In AWS there is an option to create an "S3 API endpoint" service to download without Internet using the HTTP endpoint. Does anyone know of anything similar in GCP?
0
votes
0 answers

Google Cloud Endpoints Invalid JWT signature (.NET Core)

I'm attempting authentication between services via Google's Cloud Endpoints by following this article: https://cloud.google.com/endpoints/docs/openapi/service-account-authentication#java Been struggling to get the JWT token generation to work in C#.…
Newbie
  • 157
  • 4
  • 15
0
votes
1 answer

Proxying to multiple services using Google ESP

I have been reviewing Google Cloud Extensible Service Proxy, which promises to be a serverless NGINX instance, however I am unsure on how to proxy to multiple services running in app engine through it, and essentially use it as a gateway. It seems…
user293895
  • 1,465
  • 3
  • 22
  • 39
0
votes
2 answers

Google Cloud Endpoints Frameworks for Java Not Setting Values in Input Object

I have a Cloud Endpoints method that begins like this: @ApiMethod(httpMethod = HttpMethod.POST, path = "kokoers") public Kokoer createKokoer(Kokoer kokoer, User user) throws UnauthorizedException, BadRequestException { logger.info(new…
0
votes
0 answers

Is it necessary to enable CORS for Cloud Run services with authentication if they need to handle AJAX calls?

I have a private http service (e.g. AdminAPIService) running in Google Cloud Run behind its authentication feature, and it is configured through Cloud Run to accept requests from certain set of users in my org. This service is running behind…
user482594
  • 16,878
  • 21
  • 72
  • 108
1 2 3
99
100