locked
how to go to store so user can leave a review RRS feed

  • 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

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

    Friday, August 16, 2013 5:15 PM
    Moderator
  • 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!!!



    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

    Sunday, August 18, 2013 5:02 AM