Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to launch the store for review?

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.

like image 674
user3646098 Avatar asked Feb 13 '23 21:02

user3646098


1 Answers

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.

like image 88
Muhammad Saifullah Avatar answered Feb 20 '23 04:02

Muhammad Saifullah