如何通过Android应用来访问应用程序引擎数据存储?

如何通过Android应用来访问应用程序引擎数据存储?

问题描述:

我创建App Engine应用程序(使用Python)( devappdemo.appspot.com )。

I have created app engine app (using Python)(devappdemo.appspot.com).

现在我想创建一个应该访问相同的数据存储相同的Andr​​oid应用程序。
我GOOGLE了它,我发现它可以与CloudEndPoints做,但从那里开始它是如何做不知道。请提出任何教程或分步说明去做。

Now i want to create an android app for the same which should access the same datastore. I googled it and i found that it can be done with CloudEndPoints but dont know from where to start how it can be done. Please suggest any tutorials or step by step instructions to do it.

谷歌云端点是目前最简单的方法开始使用它。这里是概述和的教程

Google Cloud Endpoints would be the easiest way at the moment to get started with it. Here is the overview and tutorial.

云终端将帮助您生成端点API(REST API),它也有助于生成Android客户端code,您可以轻松地集成到您的Andr​​oid应用程序。

Cloud Endpoints will help you generate the Endpoint API (REST API) and it also helps to generate the Android client code, that you can easily integrate into your Android application.

如果你已经暴露在Web服务的Python应用程序,你可以直接使用,从您的Andr​​oid应用程序。

If you already have exposed your Python application over Web Services, you could directly use that from your Android application.