0

我的 python 应用程序引擎端点在本地主机上运行。如何将我的 android 应用程序指向它进行测试?现在,android 应用程序正在尝试https:myapp.appspot.com/_ah/api访问appspot. 我必须先将 python 端点服务器部署到appspotandroid 应用程序才能看到它吗?我可以将服务器部署到 localhost 并从那里测试 android 吗?

4

1 回答 1

1

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


是的,您必须将其部署到 GAE。您可以通过 API 资源管理器在 GAE 上测试您的后端,通过https://mapp.appspot.com/_ah/api/explorer确保其工作正常。然后按照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

于 2013-04-05T19:12:44.817 回答