1

我在 Windows 应用商店中有一个免费的 Metro 应用程序。现在我想尝试应用内购买,所以我在“高级功能”中创建了一个应用内购买项目,产品 ID 名为“myProduct”。

当我尝试在我的程序中购买这个项目时,我调用以下命令:

string receipt = await CurrentApp.RequestProductPurchaseAsync("myProduct", true);

我得到了这个回复:

「Windows Marketplace」 is no longer available you try to purchase the item.

那么,我怎样才能尝试我的应用内购买呢?

4

1 回答 1

0

您是在从 Windows 商店安装的应用程序下还是在您的工作站上编译的应用程序下测试购买功能?我这是用于测试您的本地版本,您必须使用:

CurrentAppSimulator.RequestProductPurchaseAsync

参考

于 2012-10-25T22:37:07.587 回答