应用内支付自动续费 连续包月 审核注意问题
开发的APP最近前段时间由于IAP自动续费连续被拒了两次, 根据出现的问题, 总结了几个点, 希望能帮助到后续开发遇到同样问题的小伙伴
第一次被拒提示我们二进制数据有问题, 需要我们在APP内部做一些处理
解决方法 : 需要在支付界面添加支付相关的描述内容, 如下图所示:
会员服务协议, 自动续费服务的描述可做成前端页面或本地页面, 对服务和一些隐私, 免责等进行一些描述, 这两个按钮必须十分明显的展示出来
其次, 我们需要在itunes后台隐私政策配置以下相关描述的url
第二次被拒提示我们元数据有问题, 描述如下
We noticed that your iPhone and iPad did not fully meet the terms and conditions for auto-renewing subscriptions, as specified in Schedule 2, Section 3.8(b).
Your app's metadata did not include:
– Information about the auto-renewable nature of the subscription
– A link to the terms of use
– The length of the subscription
– A privacy policy in the Privacy Policy URL field of iTunes Connect
For your convenience, we've included Schedule 2, section 3.8(b) below.
You clearly and conspicuously disclose to users the following information regarding Your auto-renewing subscription:
– Title of publication or service
– Length of subscription (time period and/or content/services provided during each subscription period)
– Price of subscription, and price per unit if appropriate
– Payment will be charged to iTunes Account at confirmation of purchase
– Subscription automatically renews unless auto-renew is turned off at least 24-hours before the end of the current period
– Account will be charged for renewal within 24-hours prior to the end of the current period, and identify the cost of the renewal
– Subscriptions may be managed by the user and auto-renewal may be turned off by going to the user's Account Settings after purchase
– Links to Your Privacy Policy and Terms of Use
– Any unused portion of a free trial period, if offered, will be forfeited when the user purchases a subscription to that publication, where applicable
Next Steps
To resolve this issue, please revise your app or its metadata to include the missing information. Adding the above information to the StoreKit modal alert is not sufficient; the information must also be listed somewhere within the app itself, and it must be displayed clearly and conspicuously.
If the above information is in your app, please reply to this message in Resolution Center to provide details on where to locate it.
上面主要意思是说需要我们在APP本身明确的讲上面几点描述清晰明确的表现出来
解决方法: 在版本描述位置添加对以下几点的描述
- 出版物或服务的名称
- 订阅时间(在每个订阅期内提供的时间和/或内容/服务)
- 订阅价格,如果合适,每单位价格
- 付款将在购买确认后支付到iTunes帐户。
- 订阅自动更新,除非自动更新关闭至少24小时前,在本期结束。
- 账户将在本期结束前24小时内收取续期费用,并确认续期费用。
- 订阅可以由用户管理,自动更新可以在购买后转到用户的帐户设置。
- 链接到您的隐私政策和使用条款
- 免费试用期的任何未使用部分,如果提供,将在用户购买该出版物的订阅时被没收,如果适用的话。
类似以下APP描述信息截图:
添加上述几点的时候, 如果你的APP支持多个地区的商店上架, 请在每一种语言下都进行设置, 切记!!!! 如果被拒是因为这个原因, 他给出的反馈信息里是不会明确指出的
完成以上几点的描述 基本可以通过自动续费的审核了