本地开发完成!
所以我有:
api.localhost/ -> a PHP rest api. Outout is HTTP codes or json. Data served from MySql.
cdn.localhost/ -> a CDN for delivering statics image, file uploads
localhost/ -> the main web app written in js. using hashbang urls. data is fetched from the rest API.
iOs app -> objective-c. uses NSURLConnection and NSJSONserialization to parse data served from api.localhost
Android app -> same as iOS app.
现在是部署的时候了。我很困惑。我已经阅读了很多关于 GAE api 指南的内容。
- Blobstore 不适用于 PHP,对吧?
- 我应该如何进行 GAE?有这个普通的 GAE 应用程序引擎,但还有一些适用于 iOS 和 andorid 的服务?
- 我需要提供来自 API.domain.TLD 和 CDN.domain.TLD 的 JSON 数据和图像。这是否意味着我必须创建三个不同的 GAE 应用程序?如果没有,我应该如何获取图片网址?
- 我应该避免哪些错误?
- GAE 上此类项目的最佳实践是什么?
请尽可能多地写。我相信您的回答会帮助许多其他 GAE 初学者。