uwp 应用程序 - 如何使用订阅?

uwp app - how use subscription?

我为三个平台创建了我的应用程序 - android、uwp 应用程序(用于桌面)和 Windows Phone。我想使用货币化模式——订阅。但不支持 UWP 现在订阅模式。我只在 plans 中找到此功能的消息。但我没有时间等待。 我看到了唯一的可能性——在应用程序中使用已消费的购买和大部分控制业务逻辑。还有其他想法吗?

I see the only possibility - to use consumed purchases and most control business logic in the application.

目前,durable add-on 可以作为您的选择。请注意,耐用附件只能购买一次。它们不会被消耗,但您可以设置 Product Lifetime 以便客户可以在过期后再次购买它们。

出于订阅的目的,您可以在附加组件到期时提醒用户是否要续订。您可以自定义此部分的UI。当用户单击 "renew" 按钮时,只需调用 RequestPurchaseAsync 方法即可完成购买。

Any other ideas?

根据Store Policy, you can only use Windows Store Purchase API to sell digital items or services within your app. However, the method for subscription add-on is not available to most developer accounts currently. But according to ,特征将是"available to all developers later this summer"。由于您没有时间等待,您可以暂时先尝试解决方法。