Link 使用 ms-windows-store:改为导航至音乐播放器 Windows Store
Link with ms-windows-store: navigates to music player instead Windows Store
我正在开发通用应用程序。我的按钮之一应该将用户导航到商店页面以查看应用程序。我有以下代码:
void BtnRate_Tapped(object sender, TappedRoutedEventArgs e)
{
Windows.System.Launcher.LaunchUriAsync(new Uri("ms-windows-store:reviewapp"));
}
根据 Dev Center 此 link 导航到当前应用的评论页面。对我来说,任何以 ms-windows-store 开头的 link 在 Windows Phone 中的音乐播放器中打开并导致 Windows 中的错误页面。这是为什么?有没有人暗示如何解决这个问题?感谢您的任何提示
要使其正常工作,您必须:
- 将应用程序与应用商店相关联,
- 通过商店至少拥有一个版本的应用 published/available。
强烈推荐您使用提供appid的版本:
ms-windows-store:reviewapp?appid=[app ID]
此致
我正在开发通用应用程序。我的按钮之一应该将用户导航到商店页面以查看应用程序。我有以下代码:
void BtnRate_Tapped(object sender, TappedRoutedEventArgs e)
{
Windows.System.Launcher.LaunchUriAsync(new Uri("ms-windows-store:reviewapp"));
}
根据 Dev Center 此 link 导航到当前应用的评论页面。对我来说,任何以 ms-windows-store 开头的 link 在 Windows Phone 中的音乐播放器中打开并导致 Windows 中的错误页面。这是为什么?有没有人暗示如何解决这个问题?感谢您的任何提示
要使其正常工作,您必须:
- 将应用程序与应用商店相关联,
- 通过商店至少拥有一个版本的应用 published/available。
强烈推荐您使用提供appid的版本:
ms-windows-store:reviewapp?appid=[app ID]
此致