我可以将应用内购买存储在云端(解析)吗?

Can I store In-App Purchases on the Cloud(Parse)?

在 Swift 中构建 iOS 应用程序。关于我要实施的 IAP 的快速问题。目前,我的应用内购买已修复在我的应用中。意思是,我必须推送应用程序更新才能更改有关 IAP 等的可见信息。

Apple 是否允许我将此应用内购买数据存储在我的云中 (Parse),还是必须是本地的?当然,IAP 必须在 iTunes Connect 中获得批准,但如果获得批准则不必使用。

我的目标是交替使用不同的计划,而不必经历整个应用程序更新。

我觉得答案很明显是肯定的,但我只是想在开始全部编码之前确认一下。

谢谢!

应用内购买的存储位置由您决定。
这是 Apple documentation 关于存储应用内购买数据的内容。

How to store product identifiers:

Every product you sell in your app has a unique product identifier. Your app uses these product identifiers to fetch information about products from the App Store, such as pricing, and to submit payment requests when users purchase those products. Your app can either read its list of product identifiers from a file in its app bundle or fetch them from your server.

How to store associated content for purchased package:

You can embed that content in your app’s bundle or you can download it as needed — each approach has its advantages and disadvantages.
Embed smaller files (up to a few megabytes) in your app.
Download larger files when needed.

就我个人而言,我想说的是,我从事的所有项目都使用远程服务器来获取应用内购买数据。
在这种情况下,您不需要关心应用程序批准。

是的,可以将应用内购买存储在云端(解析)。

iOS 的应用内购买是通过 Apple 应用商店完成的。我们不会以任何方式削减或与交易互动。我们简化了在应用程序购买中设置的过程,负责与 Apple 服务器的交互,执行收据验证以确保您的购买安全完成,如果您选择使用此机制,则负责通过 PFFiles 交付购买的内容,还提供一个易于使用的 UI 组件,可在您的应用中使用。

如果您想详细了解,请访问此处http://blog.parse.com/announcements/in-app-purchase/

是的,你可以做到using parse in swift(youtube)

parse doc.