In above answer, the line I pasted above here, It is not working in windows phone 8.1. query parameter is wrong, Here we need to use keyword as a parameter.
So, below is the code with right url.
await Windows.System.Launcher.LaunchUriAsync(
new Uri(string.Format("ms-windows-store:search?{0}={1}", type ,searchTerms)));
You can use Windows Store's protocol with specific arguments to launch several tasks related to Store like
If you want to open review page for any app then, you can open with this line.
If you open the page of particular app in Store app then you can open with this line.
MY_PACKAGE_FAMILY_NAME
can be found inPackage.appxmanifest
file.If you want to search within Store then you can open the Store app with search result with this line.
The below are the examples which open review page for Nokia Music app, the app page itself & queries Store with text "nokia music" respectively.
In above answer, the line I pasted above here, It is not working in windows phone 8.1. query parameter is wrong, Here we need to use keyword as a parameter.
So, below is the code with right url.
Please, check answer here.