简体   繁体   中英

Uri Scheme for Movie in the Microsoft Store

I'm developing a Windows Store app. In the app I'm using the Groove SDK to query the Microsoft Store for movie titles. I can get the movie I'm looking for along with all of it's meta data. How can I launch the Windows Store app to show the user the same movie as available from Microsoft?

This has been very confusing. I have a Surface with Windows 8.1. It comes with the Windows Store app, a Music app and a Video app. The Video app says "xbox video." I've read that it has now changed to "Groove." I've look for documentation on how to link content but have found nothing.

the Groove SDK APIs will return deep links to content. Launch this deep link using Windows API

Launcher.LaunchUriAsync(new Uri(myGrooveDeepLink));

Notice that you will have to add a "target=app" parameter to your uri to launch the app instead of the web site.

https://msdn.microsoft.com/en-us/library/dn546675.aspx

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM