在python app-engine端点上测试android应用程序

时间:2013-04-02 21:13:01

标签: android google-app-engine google-cloud-endpoints

我在localhost上运行了我的python app-engine端点。如何指向我的Android应用程序进行测试?目前,Android应用正试图访问https:myapp.appspot.com/_ah/api上的appspot地址。我必须首先将python端点服务器部署到appspot,然后Android应用才能看到它吗?我可以将服务器部署到localhost并从那里测试android吗?

1 个答案:

答案 0 :(得分:1)

编辑: 对不起,我可能误解了你的问题。我认为您应该能够根据此链接在本地进行测试 - https://developers.google.com/eclipse/docs/endpoints-androidconnected-gae。第5步& 6指的是本地运行后端。你看过这个页了吗?


是的,您必须将其部署到GAE。您可以通过https://mapp.appspot.com/_ah/api/explorer通过API资源管理器在GAE上测试您的后端,以确保其正常工作。然后按照https://developers.google.com/appengine/docs/python/endpoints/consume_android中的说明生成android客户端。

这里也有一些例子,

APP引擎后端 https://github.com/GoogleCloudPlatform/appengine-endpoints-tictactoe-python

使用应用引擎后端的Android应用 https://github.com/GoogleCloudPlatform/appengine-endpoints-tictactoe-android