iPhone 应用内购买单件和捆绑商品

发布于 2025-01-02 00:55:06 字数 154 浏览 0 评论 0原文

举例来说,该应用程序就像一个音乐专辑,您可以以每首 0.99 美元的价格购买单首歌曲,或者以 7.99 美元的价格一次性购买整首歌曲可以获得折扣。对于应用内购买,如果用户以每首 0.99 美元的价格购买 3 或 4 首歌曲,而现在 7.99 美元的价格比其余歌曲的总和还贵,您如何处理这种情况?

Say for example the app was like a music album where you can buy single songs for 0.99 each, or you get a discount for buying the whole thing at once at 7.99. With in-app purchase, how do you handle a scenario where the user buys 3 or 4 single songs for 0.99 each, and now 7.99 is now more expensive than the remaining songs combined?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疯了 2025-01-09 00:55:06

我能想到的唯一方法是为每个价位创建一个新的商店商品。然后,您只需向用户展示与他们已购买的曲目数量相对应的商店商品。这可能会是一个巨大的痛苦,但我不知道有任何自动化的方法来处理它。

换句话说,假设您的专辑有 5 首曲目。您当前拥有的是:

$0.99 Track1
$0.99 Track2
$0.99 Track3
$0.99 Track4
$0.99 Track5
$4.99 EntireAlbum

您需要的是:

$0.99 Track1
$0.99 Track2
$0.99 Track3
$0.99 Track4
$0.99 Track5
$4.99 EntireAlbum
$3.99 EntireAlbumAlreadyOwn1
$2.99 EntireAlbumAlreadyOwn2
$1.99 EntireAlbumAlreadyOwn3
$0.99 EntireAlbumAlreadyOwn4

然后,您必须根据您自己的用户已购买商品的记录来确定向用户提供哪些商品。

The only way I can think of is to create a new store item for every price point. Then you would just surface the store item to the user that corresponded to the number of tracks they'd already bought. This would probably be a huge pain in the ass, but I don't know of any automated way to handle it.

In other words, let's say your album has 5 tracks. What you currently have is:

$0.99 Track1
$0.99 Track2
$0.99 Track3
$0.99 Track4
$0.99 Track5
$4.99 EntireAlbum

What you would need is:

$0.99 Track1
$0.99 Track2
$0.99 Track3
$0.99 Track4
$0.99 Track5
$4.99 EntireAlbum
$3.99 EntireAlbumAlreadyOwn1
$2.99 EntireAlbumAlreadyOwn2
$1.99 EntireAlbumAlreadyOwn3
$0.99 EntireAlbumAlreadyOwn4

You would then yourself have to determine which item to offer the user, based on your own records of what they've already purchased.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文