【UWP开发】Unity如何使用UWP接入xbox live

来源:互联网 发布:win8如何更改网络类型 编辑:程序博客网 时间:2024/06/10 11:21
●无法登录xbox live
您目前无法登录Xbox Live。请稍后再试。
0x8015DC19
使用{*SDK source root*}\Tools\XboxLiveAccountTool.exe工具切换环境有时候会不成功,
需要用管理员运行CMD再运行下{*SDK source root*}\Tools\SwitchSandbox.cmd <your sandbox ID>

●上面步骤完成了还是没法登录
XDP后台没有把sandbox发布

可以查看XboxLiveSDK_uwp.chm里面的using xbox live下的Troubleshooting Xbox Live

●如何跳转到xbox的成就/排行榜等其他界面(Win10和xbox通用)
在代码中使用打开网址函数,调用链接为:xbox-gamehub:achievements?titleId=xxxxx
ms-windows-store://home  打开win10应用商店
Application.OpenURL("xbox-gamehub:achievements?titleId=xxxxx");

Deep linking to your Game Hub
Your game hub is a single destination on Xbox Live that has lots of information around your game. It’s where Xbox displays your game’s achievements, stats, leaderboard, game clips, your game’s activity feed and more. 


From within your title or related companion app, you can link to your game hub to let Xbox take care of displaying these experiences related to your game. 


To link to a game hub, use the following deep link format: xbox-gamehub:?titleId=12345 


This will launch to the default page for your game hub (currently the Info tab). This format is consistent between Xbox One and Windows 10, so cross platform games can use the same deep link format on both platforms. 


Optionally, go to a specific tab, you can use these:


Info tab 
This tab currently displays your game’s box art and description. It also has some quick action buttons to Follow, Launch, or Buy your game. 
To launch to this tab: xbox-gamehub:info?titleId=12345 


Activity Feed tab 
This tab currently displays your game’s activity feed and showcased feed item. Your activity feed is your way to reach out to your game’s players on Xbox Live. Your showcase is a special highlighted activity feed item for you to really call attention to an individual message. 
To launch to this tab: xbox-gamehub:activityFeed?titleId=12345 


Achievements tab 
This tab currently displays the user’s progress in your game’s achievements, hero stats, and hero stat leaderboards. 
To launch to this tab: xbox-gamehub:achievements?titleId=12345 


Friends tab 
This tab currently displays content related to your friends playing this game. 
A Joinable section highlighting if your friends are currently playing or broadcasting this game. 
A list of your friends who play this game. 
A list of popular broadcasters and game clip creators creating content around your game. 
To launch to this tab: xbox-gamehub:friends?titleId=12345 


Captures tab 
This tab currently displays a list of trending game clips and screenshots the community is creating in your game. 
To launch to this tab: xbox-gamehub:captures?titleId=12345 
Media App Details

原创粉丝点击