How to launch the store for review?

c#, windows-phone-8, windows-phone-8.1, windows-runtime, windows-store-apps

Solution

It is almost the same except you need to add your app id dynamically. here is how. It will work after you publish your app on the store(weather it is beta or production)

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

Hope this helps.

Problem

In windows phone 8, we could use `MarketPlaceReviewTask` to let user review our app. In Windows 8, seems this is the right way: ``` Windows.System.Launcher.LaunchUriAsync(new Uri("ms-windows-store:REVIEW?PFN=MY_PACKAGE_FAMILY_NAME")); ``` But how to do that in Windows Phone 8.1, Windows Phone Runtime? what is the uri format? thanks.

Original source

Related problems