托管和非托管应用内产品 android 之间的区别?

发布于 2025-01-07 13:08:43 字数 225 浏览 1 评论 0原文

我通过开发者论坛了解了托管和非托管应用内产品之间的区别。他们说“非托管商品的交易信息不会存储在 Android Market 上,这意味着您无法查询 Android Market 来检索购买类型列为非托管商品的交易信息。您负责管理这些商品的交易信息”不受管理的项目。” 这是什么意思?当我测试托管和非托管应用程序内产品时,我从服务器获得了正确的响应,在我的商家帐户中,托管和非托管应用程序的订单也显示出来。请帮助我了解这两者之间的区别。

I went through the developer forum to know the difference between managed an unmanaged in-app products. they are saying that "Items that are unmanaged do not have their transaction information stored on Android Market, which means you cannot query Android Market to retrieve transaction information for items whose purchase type is listed as unmanaged. You are responsible for managing the transaction information of unmanaged items."
What does it mean? When i test the in-app product for both managed and unmanaged im getting proper response from server, in my merchant account also the order is getting displyed for both managed and un-managed app. please help me to know the difference between these two.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

栀梦 2025-01-14 13:08:43

非托管可能类似于“购买 50 积分”,

然后 50 积分将添加到您的帐户中,您会将其存储在您的帐户服务器上,因此 Android 电子市场不再需要知道您购买了此积分产品,即它不会记住您的购买,您可以多次购买。

托管可以是“购买这首歌曲”

在这种情况下,您没有服务器来记录他们购买了这首歌曲,因此每次他们重新安装时,您都可以查询市场以查看他们购买了这首歌曲及其内容不会让您多次下载。


托管旨在一次性下载,然后您“拥有该对象”。

UnManaged 用于多次下载同一内容以“补充内容”。

至少这是我的理解。


版本 3 具有“消耗品”的概念,并且其工作原理与上述内容一致。所有产品均受管理,但您可以“使用”产品。

即“购买 50 积分”将为用户提供 50 个托管积分,在您消费该产品之前,用户将无法再次购买该商品。

因此,您可以通过立即消费来制作非托管产品,或者通过在用户“使用”该产品时消费来制作托管产品(即从不调用消费来购买歌曲)。

UnManaged could be something like "Buy 50 points"

The 50 points would then be added to your account and you would store this on your accounts server, therefore the Android Market no longer needs to know that you purchased this product i.e. it will not remember your purchase and you can purchase it multiple times.

Managed could be "Buy this song"

In this scenario you do not have a server to record that they bought the song and so every time they reinstall you can query the market to see they bought the song and it will not let you download it more than once.


Managed is aimed at one time downloads then you 'own that object'.

UnManaged is for multiple downloads of the same thing to 'top something up'.

Least thats my understanding.


Version 3 has the concept of 'consumables' and it works inline with the above. All products are managed but you can 'consume' a product.

i.e. "Buy 50 points" will give the user fifty managed points, the user will not be allowed to purchase that item again until you consume that product.

Therefore you can make unmanaged products by consuming instantly, or managed products by consuming when the user has "used" that product (i.e. never call consume for buying a song).

半透明的墙 2025-01-14 13:08:43

从 Android Billing API 版本 3 开始,可以管理消耗品和非消耗品。根据我收集的信息,如果您想使用版本 3 计费 API,您的所有 IAP 都必须“托管”。

以下是文档的链接:http://developer.android.com/google/play/billing /api.html#consumetypes

As of Version 3 of the Android Billing API, both consumable and non-consumable goods can be managed. From what I've gathered if you want to use the version 3 billing API, all your IAPs must be "managed".

Here's a link to the documentation: http://developer.android.com/google/play/billing/api.html#consumetypes

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文