Answered by:
how to go to store so user can leave a review

Question
-
I can't find any samples on how to do this. I already have a message box set up. I just can't find out what those one or two lines of code that actually allow this are. Thanks!
Michael DiLeo
Friday, August 16, 2013 4:04 PM
Answers
-
The Rate and Reviews option will be automatically added to your panel when the app is published from the store.
You can link to the app's entry in the store as documented at Linking to your app , but there is no supported way to go directly to the review pane. Some people have reverse engineered a URL for that, but it is not documented and is subject to change. I would not recommend baking undocumented assumptions into your app.
--Rob
- Marked as answer by Xiaoliang Chen - MSFTModerator Friday, August 23, 2013 12:50 AM
Friday, August 16, 2013 5:15 PMModerator -
I blogged about this here:
http://www.sharpgis.net/post/2012/09/11/Linking-to-Your-Windows-Store-App.aspx/Morten
twitter: http://www.twitter.com/dotMorten
blog: http://www.sharpgis.net- Marked as answer by Xiaoliang Chen - MSFTModerator Friday, August 23, 2013 12:50 AM
Sunday, August 18, 2013 5:02 AM
All replies
-
The Rate and Reviews option will be automatically added to your panel when the app is published from the store.
You can link to the app's entry in the store as documented at Linking to your app , but there is no supported way to go directly to the review pane. Some people have reverse engineered a URL for that, but it is not documented and is subject to change. I would not recommend baking undocumented assumptions into your app.
--Rob
- Marked as answer by Xiaoliang Chen - MSFTModerator Friday, August 23, 2013 12:50 AM
Friday, August 16, 2013 5:15 PMModerator -
While I agree with Rob, but if you think you need a shortcut for now then use this:
Windows.System.Launcher.LaunchUriAsync(new Uri("ms-windows-store:REVIEW?PFN=PACKAGE_FAMILY_NAME"));
Where PACKAGE_FAMILY_NAME is in Packaging tab of your App Manifest file.
And as an example try this for Bing Finance App:
Windows.System.Launcher.LaunchUriAsync(new Uri("ms-windows-store:REVIEW?PFN=Microsoft.BingFinance_8wekyb3d8bbwe"));
-- Vishal Kaushik --
Please 'Mark as Answer' if my post answers your question and 'Vote as Helpful' if it helps you. Happy Coding!!!
- Edited by Vishal Kaushik Friday, August 16, 2013 5:47 PM
- Marked as answer by Xiaoliang Chen - MSFTModerator Friday, August 23, 2013 12:50 AM
- Unmarked as answer by Rob Caplan [MSFT]Microsoft employee, Moderator Tuesday, August 27, 2013 8:11 PM
Friday, August 16, 2013 5:42 PM -
I blogged about this here:
http://www.sharpgis.net/post/2012/09/11/Linking-to-Your-Windows-Store-App.aspx/Morten
twitter: http://www.twitter.com/dotMorten
blog: http://www.sharpgis.net- Marked as answer by Xiaoliang Chen - MSFTModerator Friday, August 23, 2013 12:50 AM
Sunday, August 18, 2013 5:02 AM