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

Google's Volley lib with Authenticated Appengine endpoints?

Google recently released Volley - a framework for handling network requests on Android. My question is can/should this lib be used with Appengine's cloud endpoints? The endpoints give you libraries to handle all the networking and authentication,…
12
votes
2 answers

appengine connected android project dead on arrival

I am following the tutorial to the letter; well, it's actually pretty basic so there is really nothing there. But when I created the project, the android portion is not compiling. Eclipse complains about not being able to resolve the imports. For…
12
votes
2 answers

Function User.getUserId() in Cloud endpoint api returns null for a user object that is not null

I have a problem with getting the userid for a cloud endpoint method. I have used oauth2 authentication in my android client and passed the credentials to my service. The below is similar to what my method looks like (simplified to make it more…
user2072160
  • 254
  • 2
  • 12
12
votes
2 answers

Error generating google cloud endpoint client libraries

During last weeks I've been developing an app using GAE/J and Google Cloud Endpoints. I created my custom endpoints (using annotations) and although I had quite a lot of problems, I could solve them and everything was working rather fine. But now…
MikO
  • 18,243
  • 12
  • 77
  • 109
11
votes
3 answers

IP Address of Google App engine application

I have deployed an application in Google App engine. I'm able to get the IP address of the machine where this app deployed but my question is does this app always runs on same IP or any chance of running on different IP. Because google app engine…
Rams
  • 2,141
  • 5
  • 33
  • 59
11
votes
1 answer

Is there a way to secure Google cloud endpoints proto datastore?

my setup: Python, google app engine using endpoints_proto_datastore iOS, endpoints Obj-C client library generator Background I've setup a test Google cloud endpoints api and had it running pretty quickly. It works great, using the test app in the…
11
votes
3 answers

Cloud Endpoints custom domain workaround

We have an AppEngine app with that we would like to use with Google Endpoints. We need to support a web client as well as mobile clients which is what makes Endpoints attractive to us since we can easily generate Android and iOS client APIs. The…
Pixel Elephant
  • 20,649
  • 9
  • 66
  • 83
11
votes
1 answer

Which MBaaS platform to use for a specific project: Parse or Google Cloud

My Android project currently requires an authentication of some sort (mobile phone number / facebook / gmail... I haven't decided yet), frequent read/write operations from the server's db (not a big amount of data, and no images/videos), push…
11
votes
2 answers

Deploy cloud endpoints on custom domain

I'm testing with Google Cloud Endpoints on App Engine and I've mapped my app to a custom domain. It appears that this is not possible. I've tried accessing the endpoint url, changing the host but this gives me a 404. I've also tried to change the…
botteaap
  • 5,790
  • 3
  • 29
  • 35
10
votes
1 answer

Error:Execution failed for task ':backend:appengineEndpointsGetClientLibs

When adding a Google Cloud Endpoint backend to a Android app using the Google App Engine Java Module Template, two classes (amongst other things) are added to the project. We are then encouraged to modify these classes to our own requirements. So,…
Ojonugwa Jude Ochalifu
  • 26,627
  • 26
  • 120
  • 132
10
votes
1 answer

Custom Authenication(User Model) for Cloud Endpoints-Python

I am developing an Android application with a GAE backend, for sessions etc. I want to use Google Cloud Endpoint and develop an API with custom authentication user model. I dont want to use the google's oauth. I want to implement a simple email/pass…
9
votes
2 answers

Creating topic on pubsub emulator

I started to use the pubsub emulator to test my basic implementations and ran into an issue while trying to create a new topic. My emulator listens on localhost:8085 and if i create the topic via the api PUT…
9
votes
4 answers

cant delete pod using kubctl delete pod

I want to delete a pod permanently so I can create the deployment.yaml and derveice.yaml again from fresh, so I tried: kubctl delete pod and the pod is still there, also tried: kubectl delete pods --grace-period=0 and didnt work. the…
9
votes
2 answers

Integrate firebase auth with google app engine cloud endpoints

Can someone specify (with some sample code) how to verify the firebase token in an google cloud endpoint? The recently asked question does not clarifiy it at all (How to integrate firebase authentication with google app engine endpoints) Google…
9
votes
1 answer

How do I secure my Google Cloud Endpoints APIs with Firebase token verification?

My setup: Java backend hosted on Google App Engine containing APIs that were created using Google Cloud Endpoints Mobile client applications containing generated client libraries for the endpoints mentioned above. Also integrated with Firebase for…