locked
[UWP]link to app in the Store with UWP RRS feed

  • Question

  • hi all

    as I understand the following doesn't work anymore for UWP

    ms-windows-store:reviewapp?appid=[app ID]

    has anyone got the latest on how to do this?

    thanks!


    cypripri


    Tuesday, July 28, 2015 10:21 PM

Answers

  • Hello, you can refer to the MSDN in this link:

    https://msdn.microsoft.com/en-us/library/windows/apps/mt228343.aspx

    Especially for UWP, I suggest to use "ms-windows-store://review/?ProductId=<YOUR_UWP_PRODUCT_ID>".

    The product id is much more useful than PFN.

    Regards.

    • Proposed as answer by zhxilin Tuesday, October 6, 2015 1:32 PM
    • Marked as answer by cypripri Tuesday, October 6, 2015 4:06 PM
    Tuesday, October 6, 2015 1:32 PM
  • Hello,

    >>as I understand the following doesn't work anymore for UWP

    For the UWP, you could use the PFN to share the application: https://msdn.microsoft.com/en-us/library/windows/apps/Hh974767.aspx#getting_a_web_link_to_your_app

    Review

    Opens the "Write a review" page of an app's   listing.

    PFN: the Package Family Name of the application

    A use example:

    var uri = new Uri("ms-windows-store:Review?PFN=XXXXXXXXX.StockOverFlowPortal_XXXXXXXXX"); 
    
    bool success = await Windows.System.Launcher.LaunchUriAsync(uri);
    

    In my application, it could redirect to the StockOverFlowPortal instruction page in store.

    For the PFN value, you could find it on the new dashboard by check: App overview ->App Management -> App identity, you could find it on App identity page.

    Regards.


    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

    • Marked as answer by cypripri Thursday, July 30, 2015 8:01 PM
    Wednesday, July 29, 2015 6:59 AM

All replies

  • Hello,

    >>as I understand the following doesn't work anymore for UWP

    For the UWP, you could use the PFN to share the application: https://msdn.microsoft.com/en-us/library/windows/apps/Hh974767.aspx#getting_a_web_link_to_your_app

    Review

    Opens the "Write a review" page of an app's   listing.

    PFN: the Package Family Name of the application

    A use example:

    var uri = new Uri("ms-windows-store:Review?PFN=XXXXXXXXX.StockOverFlowPortal_XXXXXXXXX"); 
    
    bool success = await Windows.System.Launcher.LaunchUriAsync(uri);
    

    In my application, it could redirect to the StockOverFlowPortal instruction page in store.

    For the PFN value, you could find it on the new dashboard by check: App overview ->App Management -> App identity, you could find it on App identity page.

    Regards.


    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

    • Marked as answer by cypripri Thursday, July 30, 2015 8:01 PM
    Wednesday, July 29, 2015 6:59 AM
  • excellent, works perfectly, thank you!


    cypripri

    Thursday, July 30, 2015 8:02 PM
  • Hello, you can refer to the MSDN in this link:

    https://msdn.microsoft.com/en-us/library/windows/apps/mt228343.aspx

    Especially for UWP, I suggest to use "ms-windows-store://review/?ProductId=<YOUR_UWP_PRODUCT_ID>".

    The product id is much more useful than PFN.

    Regards.

    • Proposed as answer by zhxilin Tuesday, October 6, 2015 1:32 PM
    • Marked as answer by cypripri Tuesday, October 6, 2015 4:06 PM
    Tuesday, October 6, 2015 1:32 PM
  • thanks!


    cypripri

    Tuesday, October 6, 2015 4:06 PM