OneDrive / onedrive-sdk-csharp

OneDrive SDK for C#! https://dev.onedrive.com
Other
295 stars 145 forks source link

UWP XBox One Can't Interact with Sign In UI #246

Open RexfelisLOC opened 5 years ago

RexfelisLOC commented 5 years ago

Using the following code to sign in which works fine in an UWP app on Desktop, but on Xbox One, the cursor disappears and there is no way to interact with the Yes button to grant permissions. Is there something else I need to do?

`var scopes = new[] { "wl.emails","wl.signin"}; _oneDriveClient = new OnlineIdAuthenticationProvider(scopes);

await _oneDriveClient.AuthenticateUserAsync();`