跳过内容

继续从创建 iOS 订阅组

GitHub

__CAPGO_KEEP_11__

什么是订阅组?

订阅组是什么?

订阅组是用户可以选择的相关订阅的集合。用户只能在一个组内订阅一个订阅。他们切换订阅时,苹果会自动处理转换。

为什么订阅组很重要?

订阅组的重要性

订阅组使得:

  • 阶梯式定价: 提供基本、精英和终极计划
  • 不同的持续时间: 每月、每年和终身选项
  • 升级/降级逻辑: 订阅变更的自动处理
  • Simplified management:

订阅等级

订阅等级

在一个组内,每个订阅应该按从最高价值(等级1)到最低价值的顺序排列。这个排序决定了订阅变更的分类:

订阅组层级

等级示例

等级示例

等级1 (最高价值)

  • 年度高级版 ($99.99/年)
  • 月度至尊版 ($19.99/月)

Level 2 (中等值)

  • 标准年费 ($49.99/年)
  • 高级月费 ($9.99/月)

Level 3 (最低值)

  • 基本年费 ($29.99/年)
  • 标准月费 ($4.99/月)

订阅变更类型

订阅变更类型

苹果会自动处理三个订阅级别的变更类型:

升级到 更高级别的 订阅(例如,级别 2 → 级别 1)。

行为:

  • 立即生效 用户收到
  • 剩余时间的 部分退款 新订阅马上开始
  • 示例:

升级到更高级别的订阅(例如,级别 2 → 级别 1)。

// User currently has: Standard Monthly (Level 2)
// User upgrades to: Premium Annual (Level 1)
// Result: Immediate access to Premium, refund for unused Standard time

降级到 较低等级 订阅(例如,等级 1 → 等级 2)。

行为:

  • 生效时间 下一次续订日期
  • 用户保留当前订阅直到期限结束
  • 新订阅将自动开始在到期后

示例:

// User currently has: Premium Annual (Level 1)
// User downgrades to: Standard Monthly (Level 2)
// Result: Premium access continues until annual renewal date, then switches

3. 升级到高级版

标题:3. 升级到高级版

切换到同级别的订阅 在同级别.

行为取决于持续时间:

不同持续时间 → 与 降级

  • 下一次续订生效
  • 例如:月度高级版(级别1)→ 年度高级版(级别1)

持续时间相同 → behaves like 升级

  • 立即生效
  • 例如:Premium Monthly (Level 1) → Ultimate Monthly (Level 1)

创建订阅组

创建订阅组
  1. 前往订阅

    在 App Store Connect 中,选择您的应用并转到 收入 > 订阅.

  2. 创建组

    点击 + 订阅组

  3. 命名组

    选择一个描述性的名称,反映它包含的订阅:

    • “高级访问”
    • “云存储计划”
    • “专业功能”
  4. 添加订阅

    创建组后,添加单个订阅到它。每个订阅将有一个级别排名。

  5. 设置级别排名

    按价值从高到低排列订阅。考虑到:

    • 年度计划通常比月度计划高级
    • 价格更高的等级排在价格更低的等级之上
    • 最终/高级等级最高

在您的应用中使用

应用中使用的部分

原生购买插件自动处理订阅组逻辑:

import { NativePurchases, PURCHASE_TYPE } from '@capgo/native-purchases';
// Fetch all subscriptions in a group
const { products } = await NativePurchases.getProducts({
productIdentifiers: ['premium_monthly', 'premium_annual', 'ultimate_monthly'],
productType: PURCHASE_TYPE.SUBS,
});
// Display current subscription using StoreKit transactions
const { purchases } = await NativePurchases.getPurchases({
productType: PURCHASE_TYPE.SUBS,
});
const activeSubs = purchases.filter((purchase) => purchase.isActive);
// Detect pending downgrade/cancellation (StoreKit sets willCancel === true)
const pendingChange = purchases.find((purchase) => purchase.willCancel === true);
if (pendingChange) {
console.log('Subscription will stop auto-renewing on', pendingChange.expirationDate);
}
// Purchase (StoreKit handles upgrades/downgrades automatically)
await NativePurchases.purchaseProduct({
productIdentifier: 'premium_annual',
productType: PURCHASE_TYPE.SUBS,
});
// Listen for StoreKit updates (fires on upgrades/downgrades/refunds)
NativePurchases.addListener('transactionUpdated', (transaction) => {
console.log('Subscription updated:', transaction);
});

处理订阅变化

处理订阅变化的部分

检测变化类型

检测变化类型的部分
import { NativePurchases, PURCHASE_TYPE } from '@capgo/native-purchases';
// Get current subscription info
const { purchases } = await NativePurchases.getPurchases({
productType: PURCHASE_TYPE.SUBS,
});
const currentSubscription = purchases.find(
(purchase) => purchase.subscriptionState === 'subscribed',
);
if (currentSubscription) {
// StoreKit reports if user cancelled auto-renew
if (currentSubscription.willCancel) {
console.log(
`User cancelled. Access remains until ${currentSubscription.expirationDate}`,
);
}
if (currentSubscription.isUpgraded) {
console.log('User recently upgraded to this plan.');
}
}
// Listen for automatic upgrades/downgrades
NativePurchases.addListener('transactionUpdated', (transaction) => {
console.log('Subscription changed!', transaction);
if (transaction.subscriptionState === 'revoked') {
revokeAccess();
} else if (transaction.isActive) {
unlockPremiumFeatures();
}
});

始终清晰地传达变化行为:

For Upgrades:

“您将立即获得高级功能。我们将根据您的当前订阅进行折扣。”

For Downgrades:

“您将保留高级访问权直到 [renewal date],然后切换到标准。”

For Crossgrades:

“您的计划将在下一次续订时更改为年度计费。”

使用 Apple 的 App Store 服务器通知 v2 或您的收据验证后端来反映 StoreKit 的更改。将服务器通知与 transactionUpdated 侦听器配对,以便客户端和后端保持同步。

组织结构

组织结构
  • 将相关订阅放在同一个组中
  • 不要混淆不相关的功能(例如,存储和广告移除)
  • 为不同功能集创建单独的组

等级排名策略

组织结构
  • 年度计划 → 与月度计划相同的等级(但价格更高)
  • 价格更高的等级 → 等级更高
  • 考虑价值,而不是价格

用户体验

用户体验
  • 显示当前订阅明确
  • 在组中显示所有可用选项
  • 指出哪些更改立即生效,哪些在续订时生效
  • 允许轻松切换计划
  • 测试所有升级场景
  • 测试所有降级场景
  • 验证交叉级别行为
  • 检查 webhook 触发

常见场景

常见场景部分

场景 1:三层月度计划

场景 1:三层月度计划
Level 1: Ultimate Monthly ($19.99)
Level 2: Premium Monthly ($9.99)
Level 3: Basic Monthly ($4.99)
  • 基础 → 高级:立即升级
  • 高级 → 最终:立即升级
  • 最终 → 高级:到期时降级
  • 基础 → 最终:立即升级

场景 2:混合时长计划

场景 2:混合时长计划
Level 1: Premium Annual ($99.99/year)
Level 2: Premium Monthly ($9.99/month)
  • 月度 → 年度:到期时升级
  • 年度 → 月度:到期时降级

场景 3: 多层级多时段

场景 3: 多层级多时段
Level 1: Ultimate Annual ($199/year)
Level 2: Ultimate Monthly ($19.99/month)
Level 3: Premium Annual ($99/year)
Level 4: Premium Monthly ($9.99/month)
Level 5: Basic Annual ($49/year)
Level 6: Basic Monthly ($4.99/month)

这种设置提供了最大限度的灵活性,同时保持清晰的升级/降级逻辑。

故障排除

故障排除

订阅未出现在组中:

  • 确认它已分配到正确的组
  • 检查它至少处于“已准备好提交”状态
  • 确保产品 ID 正确

升级/降级行为错误:

  • 检查级别排名(1 = 最高)
  • 验证订阅等级是否合理
  • 检查等级是否设置正确

来自不同组的产品:

  • 用户可以同时订阅多个组
  • 这是有意为之 - 将相关产品放在同一组

getActiveProducts显示多个订阅:

  • 检查订阅是否在不同组
  • 验证用户并非通过家庭共享订阅
  • 在 App Store Connect 中检查订阅状态

欲知更多详细信息,请参阅 official Apple documentation on subscription groups.

如果您正在使用 创建 iOS 订阅组 以规划商店审批和分发,连接它与 使用 @capgo/native-purchases 对于在使用 @capgo/native-purchases 中的原生能力 @capgo/capacitor-in-app-review 对于在 @capgo/capacitor-in-app-review 中的实现细节 使用 @capgo/capacitor-in-app-review 对于在使用 @capgo/capacitor-in-app-review 中的原生能力 @capgo/capacitor-native-market 为capgo/capacitor-native-market的实现细节 使用capgo/capacitor-native-market 为capgo/capacitor-native-market的原生能力