iOS 应用内购买:管理多个自动续订订阅系列

iOS In-App Purchase: Managing multiple auto-renewal subscription families

在我们的应用程序中,我们支持四种类型的订阅,例如:

我们将这些订阅分成两个系列,如下所示:

  1. 单用户订阅

    • 单用户包月
    • 单用户年度订阅
  2. 家庭用户订阅

    • 家庭用户包月
    • 家庭用户包年

我们有一些查询要了解自动续订流程,我列出了:

  1. 用户能否在 iTunes 管理订阅/应用程序的自动续订产品系列之间切换?

  2. 假设我购买了单用户包月,现在我想切换到家庭用户包月。

    • 当我尝试更改订阅时,iTunes 管理订阅会显示哪些选项意味着它会同时显示订阅家庭或仅显示我当前订阅的家庭?

    • 如果我购买了这些不同的家庭订阅,Apple 会在当时收费还是在当前订阅到期后收费?

  3. 假设我购买了家庭用户包年,现在我想切换到家庭用户包月。

    • 我可以购买 "Family User Monthly Subscription" 因为我已经订阅了同一个家庭订阅 "Family User Yearly Subscription" 吗?

    • 当我从 iTunes 管理订阅更改这些订阅时,新订阅将在当前订阅到期时开始,并在那时从新订阅中收费。 我的 Apple 订阅流程正确吗?

  4. 我们在应用程序中管理两个自动续订系列是否违反了任何 Apple 政策?

  1. Can user switch between auto-renewal product families from iTunes Manage Subscription / from Application?

是的,用户将能够在 MonthlyYearly 之间切换,但不能在 SingleFamily 之间切换,除非他们属于同一个订阅系列。

    • Which options, iTunes manage subscription will show when i try to change subscription means it display both subscription family or only family in which i currently subscribed?

它只会显示同一订阅系列中其他产品的选项。因此,如果唯一的其他选项是 Yearly 那么它只会显示。

    • if i purchase these different family subscription, Apple will charge at that time or will charge after current subscription expire?

Apple 只会在原始订阅期限结束后向用户收费,例如如果用户购买 Yearly 订阅,然后 8 个月后她切换到 Monthly,距离年度订阅结束还有 4 个月,因此她将在 4 后支付 Monthly 订阅费用个月。

    • Can i able to purchase "Family User Monthly Subscription" because as i already subscribed with same family subscription which is "Family User Yearly Subscription"?

是的,用户可以将订阅更改为同一订阅系列的任何其他产品。

    • When i change these subscription from iTunes manage subscription, new subscription will start when current subscription expire and will charge from new subscription at that time. Am i correct with Apple subscription flow?

新订阅将立即开始,有效取代旧订阅,但在原始订阅的按比例信用额度用完之前,不会向用户收费。

  1. Are we violating any Apple policy by managing two auto-renewal family in our application?

据我所知,如有疑问,请向 Apple 或律师寻求澄清。


最后一点。似乎您可能希望 Single UserFamily User 持续时间在同一个订阅系列中,否则用户可能会购买这两种订阅,我不确定这是否是您想要的。它还可以防止用户从 Single 切换到 Family,反之亦然,这可能会让一些用户感到沮丧。