iOS - 审核被拒理由之IAP Type

14年的时候做的苹果内购,当时是积分充值,直接选的Product Type是消耗型,没错。去年末,做会员,也选了个消耗型。然后就有了下面这个被拒信息:

  • Business - 3.1.1
    

We noticed that your in-app purchase product was set to an incorrect product type.


    

会员 is set to consumable.


    Next Steps

Since the service offered by your app requires the user to make an advance payment to access the content or receive the service, please use the non-renewable subscription in-app purchase product type. Non-renewable subscription content must be made available to all iOS devices owned by a single user, as indicated in guideline 3.1.2 of the App Store Review Guidelines.
    

NOTE: The product type cannot be changed once an in-app purchase product has been created. Therefore, you will need to create a new in-app purchase product with the correct product type.

  • 来,先翻译下:
    我们发现你的IAP商品设置成了一个错误的产品类型。
    会员设置成了消耗品
    下一步:
    由于你的App提供给用户的服务需要预先付款才能获取内容或者接受服务,请使用不可变的订阅IAP商品类型。一个用户的所有iOS设备必须都能获取不可变的订阅内容,就像AppStore审核指南3.1.2所示。
    注意:一旦一个iap产品创建出来,产品类型就不能更改。因此,你需要创建一个新的正确的产品类型的iap产品。

    解决办法:删掉错误的IAP商品,创新创建。
    常见的类型:Q币是消耗类型,QQ会员是非续订订阅

  • 官方审核文档中是这样介绍的:
    https://developer.apple.com/in-app-purchase/
    Product Types
    Product types let you use In-App Purchase in a range of apps by providing several different product behaviors. In iTunes Connect, you select one of the following product types:
    • Consumable products. Items that get used up over the course of running your app. Examples include minutes for a Voice over IP app and one-time services such as voice transcription.
    • Non-consumable products. Items that remain available to the user indefinitely on all of the user’s devices. They’re made available to all of the user’s devices. Examples include content, such as books and game levels, and additional app functionality.
    • Auto-renewable subscriptions. Episodic content. Like non-consumable products, auto-renewable subscriptions remain available to the user indefinitely on all of the user’s devices. Unlike non-consumable products, auto-renewable subscriptions have an expiration date. You deliver new content regularly, and users get access to content published during the time period their subscription is active. When an auto-renewable subscription is about to expire, the system automatically renews it on the user’s behalf.
    • Non-renewable subscriptions. Subscriptions that don’t involve delivering episodic content. Examples include access to a database of historic photos or a collection of flight maps. It’s your app’s responsibility to make the subscription available on all of the user’s devices and to let users restore the purchase. This product type is often used when your users already have an account on your server that you can use to identify them when restoring content. Expiration and the duration of the subscription are also left to your app (or your server) to implement and enforce.

  • 意思呢就是:
    产品类型可以让你在不同的产品行为中使用应用内购,在一系列的应用中。在iTunes Connect中,你可以选择一下产品类型之一:
    消耗型项目:在运行你的App的时候消耗掉的项目。例如包括VOIP的按分钟通话和一次性服务,就像语音转录。还有比如说积分,鱼食等都属于消耗型项目
    非消耗型项目:在该用户ID的所有设备中可以无限期使用的项目。他们可以在用户所有的设备中使用。例如包括内容,就像书籍/游戏等级/附加的应用功能。
    自动续订订阅:连续内容。和非消耗项目一样,自动续订订阅也能在该用户ID的所有设备中无限期使用。和非消耗项目不同的是,自动续订订阅有一个过期时间。你定期交付新的内容,用户在订阅期间内可以访问到发布的内容。当一个自动续订订阅到期了,系统会自动以用户身份续订。比如说你定了QQ的自动续约会员,或者杂志订阅
    非续订订阅:订阅不涉及连续交付的内容。例如包括访问历史图片数据库或者是航班地图的集合。这是你应用的能力使用户能在所有的设备中订阅并且让用户能够重置购买。当你的用户已经在你的服务器中有了一个账号,你可以在重置内容的时候用来标识他们,在这个时候会用此商品类型。到期和订阅的时长也由你的App(或者你的服务器)来实行和执行。例子:一个月会员。

这只是关于IAP中Product Type的一个简单的介绍,关于IAP的开发将在之后的博客中整理出来。

                    推荐速8主题歌
                   《Good Life》

你可能感兴趣的:(IOS)