从 Android 访问数据存储 App 引擎
无需身份验证即可从 Android 访问应用程序引擎数据存储。在网络中你可以。我正在搜索,但所有教程都谈到认证,但实际上不需要这个。
谢谢
It is posible access to app engine data store from Android without authentication. In web you can. I was searching but all tutorials speak about athentication but really a don't need this.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的 - 只需通过 HTTP API 公开您想要公开的数据(任何类型,尽管 RESTful 通常是有意义的)。直接公开数据存储区通常不是一个好主意,因此您应该编写适合应用程序语义的 API 层。
Yes - just expose the data you want to expose via an HTTP API (of any variety, though something RESTful usually makes sense). It's not generally a good idea to expose the datastore directly, so you should write an API layer that suits the semantics of your application.