1

我们有一个基于 Google App Engine 的系统并且想要创建新的应用程序。此应用程序可帮助用户通过单击我们网站上的按钮轻松保存联系人。(喜欢这个网站http://iphone.mobicontact.info/ --> 在 iOS 上浏览并点击“将联系人下载到 Iphone”)

根据http://mobicontact.info/iphone/download-contact-from-web-page/我们必须使用 ics 文件(日历)包含 vcf 文件(联系人)来做我们的业务。顺便说一句,我们为生成 ics 文件(没有 vcf 文件)创建了一个 servlet,但它不能正常工作。(我认为在 ics 文件内容中有 vcf 文件。另外,我无法在 GAE 服务器上创建文件,Google App Engine 是否允许在服务器上创建文件和文件夹?)。

任何人都可以帮助我并告诉我如何从 GAE 系统创建 iOS 联系人文件?太感谢了!

4

1 回答 1

0

You can create any file you want on the "server" you just can't save it back to the local filesystem, you have to use the blobstore or similar. Or you can just send it to the user without saving it at all after creating it on the fly in response to a request.

You can use the blobstore or the normal NDB/DB storage. For files the size of the ones you mention the latter would be fine I'm sure.

As to why your ics file is not working, I'd say you need to ask another question or update this one with some details of why it "does not work properly" before anyone can help.

于 2012-12-06T10:25:47.623 回答