iOS App Store Review Guidelines for IAP
复制一个包含安装步骤和完整 Markdown 指南的配置提示以此插件。
在 App Store 上发布应用程序需要仔细关注苹果的指南,特别是在实施内购和订阅时。

在提交应用程序之前
标题:在提交应用程序之前在 Apple 审核您的购买流程之前,请确保应用程序记录本身是完整的:
在 App Store Connect 中添加隐私政策 URL
- 在 App Store Connect 中添加 Section titled “Finish App Store Connect Setup” Before Apple reviews your purchase flow, make sure the app record itself is complete:
- Add a [Support URL] 为用户提供真实的联系方式
- Complete the 年龄等级 完成问卷以使应用程序可发布
- Add 应用程序审查联系方式 和清晰的审查者笔记
- 如果需要登录,请提供一个 demo账户在审查期间不会过期
准备真实截图
标题:准备真实截图- 使用当前截图,从实际正在审查的构建中获取
- 对于iPhone,
1290 x 2796(6.7英寸)是最简单的默认尺寸 - 如果您的应用程序支持iPad,请上传iPad截图
- 当前接受的大型iPad尺寸包括
2064 x 2752(13英寸)和2048 x 2732(12.9英寸) - 永远不要Stretch iPhone截图来模拟iPad支持
__CAPGO_KEEP_0__在TestFlight中模拟审阅者旅程
__CAPGO_KEEP_0__标题:在TestFlight中模拟审阅者旅程在真实设备上模拟Apple将遵循的确切路径:
- 从TestFlight安装最新版本
- 使用您打算提供的审阅账户登录
- 在没有隐藏手势或调试菜单的情况下到达付费墙
- 完成购买、恢复和订阅管理流程
- 如果权限被拒绝,验证应用程序仍然正确运行
价格透明度(关键)
__CAPGO_KEEP_0__标题:价格透明度(关键)苹果要求在任何购买前明确显示价格:
必须包含的元素:
- 在购买按钮前显示具体价格
- 显示计费频率(例如,“每月 $9.99”)
- 明确说明用户为钱付出了什么
- 指出会产生的费用
常见拒绝理由:
“Subscription pricing must be clear and upfront.”
:::caution 价格一致性 所有价格必须在以下地方一致:
- App Store 元数据列表
- 内购屏幕
- 订阅管理屏幕
即使是 $1 的价格差异(商店列表 $4.99 与应用 $5.99)也会触发自动拒绝。 :::
订阅计划展示
标题:订阅计划展示必备披露:
- 同时展示所有可用订阅等级
- 每个等级的功能清晰对比
- 不通过 UI trick 自动跳转到高级等级
- 易于找到取消订阅的指示

符合规范的 UI 示例
import { NativePurchases } from '@capgo/native-purchases';
function SubscriptionScreen() { return ( <div> <h2>Choose Your Plan</h2>
{/* Show all tiers equally */} <PlanCard title="Basic" price="$4.99/month" features={['Feature A', 'Feature B']} /> <PlanCard title="Premium" price="$9.99/month" features={['All Basic', 'Feature C', 'Feature D']} highlighted={false} // Don't force premium />
{/* Clear cancellation info */} <Text> Cancel anytime in Settings > Subscriptions. No refunds for partial periods. </Text> </div> );}恢复购买
恢复购买必备实现:
每个支持内购的应用程序都必须为用户提供恢复之前购买的方法,而无需联系支持团队。
import { NativePurchases, PURCHASE_TYPE } from '@capgo/native-purchases';
async function restorePurchases() { try { await NativePurchases.restorePurchases();
const { purchases } = await NativePurchases.getPurchases({ productType: PURCHASE_TYPE.SUBS, });
const activeSub = purchases.find( (purchase) => purchase.isActive && purchase.expirationDate, );
if (activeSub) { unlockPremiumFeatures(); showMessage('Purchases restored successfully!'); return; }
const { purchases: iaps } = await NativePurchases.getPurchases({ productType: PURCHASE_TYPE.INAPP, }); const hasIap = iaps.some((purchase) => purchase.productIdentifier === 'premium_unlock');
showMessage( hasIap ? 'Premium purchase restored!' : 'No previous purchases found.', ); } catch (error) { showError('Failed to restore purchases. Please try again.'); }}
// Add a visible "Restore Purchases" button<Button onClick={restorePurchases}> Restore Purchases</Button>常见拒绝原因
恢复购买1. 应用程序崩溃或功能损坏
失败原因:应用程序在启动时崩溃
- 购买流程无法完成
- __CAPGO_KEEP_0__
- 截图中显示的功能不工作
预防措施:
- 在真实设备上进行测试(而不是模拟器)
- 测试所有订阅流程(从头到尾)
- 验证收据验证功能
- 检查网络错误处理
2. 元数据不匹配
标题:2. 元数据不匹配为什么会失败:
- 截图显示当前版本中没有的功能
- 描述中提到的功能并不存在
- 元数据中的价格与应用内价格不一致

Prevention:
// Document exactly what's in each tierconst SUBSCRIPTION_FEATURES = { basic: ['Ad-free', 'Cloud sync', 'Basic themes'], premium: ['Ad-free', 'Cloud sync', 'All themes', 'Priority support']};
// Use these in both your app AND App Store description3. 权限说明缺失
3. 权限说明缺失部分为什么会失败:
- 未提供解释的摄像头/位置/健康请求
- 多个屏幕深的权限请求
- 模糊或通用的权限描述
预防:
更新你的 Info.plist 用清晰的说明:
<key>NSCameraUsageDescription</key><string>Camera access is needed to scan product barcodes for quick subscription upgrades.</string>
<key>NSLocationWhenInUseUsageDescription</key><string>Location helps us show relevant local content in your Premium subscription.</string>4. 欺骗性营销
名为“4. 欺骗性营销”的部分为什么会失败:
- 没有提供证据的说法,如“世界上最受欢迎的应用”
- 看似无限的功能实际上有隐含的限制
- 制造紧迫感的伎俩(“仅剩下2个位置!”)


预防措施
- 具体、事实性的描述
- 避免无据之谈的极端表述
- 不要用假的紧迫感来胁迫用户
5. 隐匿的取消流程
标题:5. 隐匿的取消流程为什么会失败:
- 没有说明如何取消
- 取消按钮被隐藏或遮挡
- 多步取消流程而不是苹果原生流程
预防措施:
// Always inform users about cancellationfunction SubscriptionInfo() { return ( <div> <h3>How to Cancel</h3> <ol> <li>Open iPhone Settings</li> <li>Tap your name at the top</li> <li>Tap Subscriptions</li> <li>Select this app and tap Cancel</li> </ol>
<p>Or manage directly in the App Store app.</p>
<Button onClick={openSubscriptionManagement}> Manage Subscription in Settings </Button> </div> );}
async function openSubscriptionManagement() { // Direct link to iOS subscription management await NativePurchases.showManageSubscriptions();}隐私和数据使用(第 5.1.1 节]
Section titled “隐私和数据使用(第 5.1.1 节)”苹果在 2025 年严格了隐私要求。
对于每个权限:
- 为什么需要它(具体用例)
- 它将何时使用
- 数据如何存储/共享
- 是否可选或必需
示例:正确的权限流程
Section titled “示例:正确的权限流程”async function requestCameraPermission() { // Show explanation BEFORE requesting await showDialog({ title: 'Camera Access', message: 'We need camera access to let you scan barcodes for quick product lookup. Your photos are never uploaded or stored.', buttons: ['Not Now', 'Allow'] });
// Then request permission const result = await Camera.requestPermissions(); return result.camera === 'granted';}隐私营养标签
标题:隐私营养标签确保您的App Store隐私标签准确反映:
- 收集购买历史
- 电子邮件地址(用于收据)
- 设备ID(用于欺骗防御)
- 使用数据(用于分析)
2025年,错误的隐私标签是常见的拒绝原因。审查数据收集非常谨慎。
提交前检查清单
标题:提交前检查清单
-
测试所有购买流程
- 购买每个订阅等级
- 测试免费试用
- 验证初期优惠正确
- 测试恢复购买
- 验证家庭共享(如果启用)
- 测试多台设备
-
验证定价一致性
- 检查App Store元数据与内购价格匹配
- 验证所有货币正确
- 确认免费试用持续时间与描述匹配
- 检查初期优惠条款准确
-
审查所有复制
- 移除占位文本
- 验证声明是可测试的
- 检查语法和拼写
- 确保描述与当前构建匹配
- 移除竞争对手的提及
-
测试权限
- 只请求必要的权限
- 在请求之前显示清晰的说明
- 测试“拒绝”流(应用程序仍应正常工作)
- 验证Info.plist描述是清晰的
-
准备测试账户
- 创建一个在审查期间有效的审查账户
- 在 App Review 信息中记录登录凭证
- 验证审阅者可以访问付墙并完成购买流程
- 如果需要,请在 Notes 字段中包含额外的账户或应用特定 switch
-
检查元数据
- 截图与当前 UI 匹配
- 支持 URL 包含真实的联系方式
- 隐私政策 URL 已填写
- 年龄等级与构建中的内容匹配
- 应用预览视频(如果有)显示当前版本
- 描述准确地描述了功能
- 隐私政策在应用内和商店列表中都可访问
-
编写详细的审阅笔记
Contact:Name: Jane DeveloperEmail: review@yourapp.comPhone: +1 555-0100Test Account:Email: reviewer@test.comPassword: TestPass123!This account does not expire during review.Testing Instructions:1. Log in with test account above2. Tap "Upgrade to Premium" button3. Select "Monthly Premium" subscription4. Complete purchase (no charge in sandbox)5. Verify premium features unlockNote: Subscription pricing is clearly shown before purchase.Cancellation instructions are in Settings > Account.
查看时间线
名为“查看时间线”的部分
标准审查: 24-48 小时 高峰期: 3-5 天(App Store 休假发布) 周末: 未处理评论 加速审查: 可用于紧急bug修复(通过App Store Connect请求)
您在 App Store Connect 中会看到的常见状态:
Waiting for ReviewIn ReviewPending Developer ReleaseRejected
2026 年提交重点
2026 年提交重点当前重点领域
当前重点领域1. 订阅清晰度
- 需要进行侧面比较的计划
- 不允许使用‘暗模式’隐藏更便宜的选项
- 清晰的降级/升级路径
2. 元数据准确性
- 截图必须与正在审查的构建匹配
- 如果启用了iPad支持,则需要iPad截图
- 支持URL和隐私政策应在提交前已上线
3.隐私和审查详细信息质量
- SDK实际收集的隐私披露必须与之匹配
- 在第一次提交时,应用审查联系信息和备注应已完成
- 演示凭证必须在整个审查窗口内保持有效
4.提交准备
- 苹果更新的最低SDK要求定期更新,因此在上传发布构建之前,请确认当前截止日期
- TestFlight是验证准确的审查者路径的最安全地方
原生购买插件的最佳实践
最佳实践:原生购买插件正确处理错误
最佳实践:正确处理错误import { NativePurchases, PURCHASE_TYPE } from '@capgo/native-purchases';
async function handlePurchase(productId: string) { try { const transaction = await NativePurchases.purchaseProduct({ productIdentifier: productId, productType: PURCHASE_TYPE.SUBS, });
// Success await validateReceiptOnServer(transaction.receipt); showSuccess('Subscription activated!'); unlockFeatures();
} catch (error: any) { // Handle specific error cases if (error.code === 'USER_CANCELLED') { // User cancelled - don't show error console.log('Purchase cancelled by user'); } else if (error.code === 'PAYMENT_PENDING') { showInfo('Payment is pending. Please check back later.'); } else if (error.code === 'PRODUCT_ALREADY_PURCHASED') { // Restore instead await NativePurchases.restorePurchases(); } else { // Show user-friendly error showError('Unable to complete purchase. Please try again.'); } }}显示加载状态
最佳实践:显示加载状态function PurchaseButton({ productId }: { productId: string }) { const [loading, setLoading] = useState(false);
const handlePurchase = async () => { setLoading(true); try { await NativePurchases.purchaseProduct({ productIdentifier: productId }); } finally { setLoading(false); } };
return ( <button onClick={handlePurchase} disabled={loading}> {loading ? 'Processing...' : 'Subscribe Now'} </button> );}明确显示条款
最佳实践:明确显示条款function SubscriptionTerms() { return ( <div className="terms"> <p> Subscription automatically renews unless cancelled at least 24 hours before the end of the current period. </p> <p> Your account will be charged for renewal within 24 hours prior to the end of the current period. </p> <p> Subscriptions may be managed by the user and auto-renewal may be turned off in Account Settings after purchase. </p> <p> <a href="/terms">Terms of Service</a> | <a href="/privacy/">Privacy Policy</a> </p> </div> );}如果您的应用被拒绝
最佳实践:如果您的应用被拒绝解决步骤
解决步骤部分-
仔细阅读拒绝原因
- 注意被引用具体的指南(例如3.1.1,5.1.1)
- 准确理解苹果旗帜指向的问题
-
彻底解决问题
- 不要仅仅修复 - 修复根本原因
- 测试修复方案
- 记录你所做的修改
-
在Resolution Center中回复
Thank you for your feedback. I have addressed the issue:Issue: Subscription pricing not clear upfrontFix: Added explicit pricing display on subscription selectionscreen showing "$9.99/month" before purchase button. Also addedcancellation instructions on the same screen.The changes are in this submission and can be tested using theprovided test account. -
及时重新提交
- 如果您认为拒绝是错误的:
- 通常在24小时内
申诉流程
关于申诉流程的部分如果您认为拒绝是错误的:

- 点击 App Store Connect 中的“申诉”
- 提供清晰的证据:
- 截图显示遵守
- 具体指向的指南
- 对如何满足要求的解释
- 保持专业和事实
- 如果功能难以找到,请包含测试账号

额外资源
额外资源支持
支持如果您仍然遇到问题:
需要专家帮助?
标题为“需要专家帮助?”的部分在应用程序审查中遇到困难或需要个人化帮助? 与我们的团队预约一个咨询电话 专门为:
- IAP实施审查和优化
- App Store 评审准备和策略
- 提交清单审查
- 拒绝解决方案和申诉
- 完成测试和验证
我们的专家已经成功帮助数百个应用程序通过审查!
继续从 iOS App Store Review 指南中 IAP
标题为“继续从 iOS App Store Review 指南中 IAP”如果您正在使用 iOS App Store Review 指南中的 IAP 来规划商店批准和分发,连接它到 使用 @capgo/native-purchases 为在使用 @capgo/native-purchases 中的本机能力 @capgo/capacitor-in-app-评论 为 @capgo/capacitor-in-app-评论 的实现细节 使用 @capgo/capacitor-in-app-评论 为 @capgo/capacitor-in-app-评论 的原生能力 @capgo/capacitor-native-市场 为 @capgo/capacitor-native-市场 的实现细节, 和 使用 @capgo/capacitor-native-市场 为 @capgo/capacitor-native-市场 的原生能力