Windows error 0x80860003, -2138701821

Detailed Error Information

ONL_E_INVALID_APPLICATION[1]

MessageThe application requesting authentication tokens is either disabled or incorrectly configured.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode134 (0x086)
NameFACILITY_ONLINE_ID[1]
Error Code3 (0x0003)

Questions

4votes
1answer

The application requesting authentication tokens is either disabled or incorrectly configured

I was trying for microsoft login in my windows 10 UWP app. var authenticator = new Windows.Security.Authentication.OnlineId.OnlineIdAuthenticator(); var serviceTicketRequest = new Windows.Security.Authentication.OnlineId.OnlineIdServiceTicketRequest("wl.basic", "DELEGATION"); System.Diagnostics.Debug.WriteLine("Signing in..."); var authResult = await authenticator.AuthenticateUserAsync(serviceTicketRequest); this was the code I was trying. I got exception at authenticator.AuthenticateUserAsync The exception was > Exception thrown: 'System.Exception' in [...] read more
c#
authentication
uwp
windows-10
win-universal-app
1vote
1answer

How to register existing UWP app with Microsoft App Registration Portal

I had a UWP app working with OneDrive, allowing users to read and write to a file. Then I accidentally deleted my app from the Application Registration Portal (https://apps.dev.microsoft.com/#/appList) and now any OneDrive related code throws an authentication error. I am able to add a new app but then unable [...] read more
uwp
azure-active-directory
onedrive

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0