如何启动商店进行审核?

时间:2014-05-26 03:57:45

标签: c# windows-phone-8 windows-runtime windows-store-apps windows-phone-8.1

在Windows Phone 8中,我们可以使用MarketPlaceReviewTask让用户查看我们的应用。在Windows 8中,似乎这是正确的方法:

Windows.System.Launcher.LaunchUriAsync(new Uri("ms-windows-store:REVIEW?PFN=MY_PACKAGE_FAMILY_NAME"));

但是如何在Windows Phone 8.1,Windows Phone Runtime中做到这一点?什么是uri格式?感谢。

1 个答案:

答案 0 :(得分:8)

除非您需要动态添加应用ID,否则几乎相同。这是怎么回事。在商店发布应用程序(天气为测试版或制作版)后,它将起作用

Windows.System.Launcher.LaunchUriAsync(new Uri("ms-windows-store:reviewapp?appid=" + CurrentApp.AppId));

希望这有帮助。