Handsome Greg
Handsome Greg

Reputation: 325

Media App deeplinking in UWP on Xbox

We have migrated our app from the JavaScript/HTML old school Xbox One framework to UWP. However, we still want to support the ms-xbl deeplinking: ms-xbl-{titleId}://media-details?contentId={contentId} This protocol is used to launch an app from a media tile on Xbox Dashboard.

The titleId of our UWP (Xbox) app is blank in the console, so we cannot use the Xbox XDK to launch the app from a deep link as we used to. Microsoft wants to promote our app but they require using the ms-xbl protocol, is it even possible to handle (and debug) that in UWP?

Looking at the Xbox One dashboard, I can see apps which seem to support it (Netflix, Channel5).

Upvotes: 0

Views: 679

Answers (1)

Barry Wang
Barry Wang

Reputation: 1469

The titleId of our UWP (Xbox) app is blank in the console

The titleID should not be null(You cannot get it from console). You can get it from your dashboard and then add it yourself(like from Get your IDs). Are you using XBOX Creator Program? In that way when you enable XBOX Live service you can find your titleID directly from XBOX Live Service part from your dashboard. Then you can add it to your app by refer to Add the TitleID and SCID to your binary.

Upvotes: 1

Related Questions