user1275437
user1275437

Reputation: 1

How to use EndPoints to generate API library in Objective-C in Google App Engine

I used Google app engine as my backend server. I watched the Google I/O video, and it said it can generate the iOS API library in EndPoints by command line. But I couldn't find the way to do that, and there is no information about it on the Internet. Is there anyone who uses Google app engine as their IOS app backend and could answer my question?

Upvotes: 0

Views: 877

Answers (2)

alex
alex

Reputation: 2451

Cloud Endpoints is still under Trusted Tester program. You can sign up here:

http://endpoints-trusted-tester.appspot.com/

UPDATE Official docs on generating iOS client libs can be found here:

Upvotes: 0

Malloc
Malloc

Reputation: 16286

Working with GAE, there is no way to generate an API "in objective-c". Google app engine infrastructure supports Java and python, so you need to write your API in one of these languages to deploy it in GAE cloud.

Then, in your iOS application, you will need to communicate with the APIs you just deployed in GAE, this can be done with a so called client library. Here is an example of a client library for Objective-C.

Upvotes: 0

Related Questions