如何通过appid导航到应用程序商店

如何通过appid导航到应用程序商店

问题描述:

我的团队和我最近在windows phone8中开发了一个休闲游戏,但遇到了一个非常棘手的问题,即如何通过appid导航到应用程序商店。我已经多次尝试过,但没有成功。有没有人之前遇到过
这个问题,或者对此有什么好主意?如果是这样,请帮我解决问题。非常感谢!

My team and I recently developed a casual game run in windows phone8, but ran into a very troublesome problem that is how to navigate to the application store through appid. And I have tried many times, but have not succeeded. Is there anyone who has encountered this problem before, or has any good idea about this? If so, please help me out of the problem. Thank you very much!

嗨Galliano,

Hi Galliano,

 试试这个,记得先断开设备运行此代码,因为如果您的设备通过数据线连接到您的系统 

 Try This and remember to disconnect the device before running this code because if your device is connected to your system through data cable 

您无法打开Windows应用商店,也无法将Uri中的appId替换为您的应用appId in商店

you are not able to open the windows application store and also replace the appId in the Uri with your application appId in the store

WebBrowserTask webBrowserTask = new WebBrowserTask();
 webBrowserTask.Uri = new Uri("http://windowsphone.com/s?appId=3e1603cd-56a3-49aa-8d0c-cf4bee8cefd2");
 webBrowserTask.Show();

谢谢