How to Authenticate UWP app using Current Windows LoggedIn user
Currently my business UWP app authenticate using AD username and password from users which is generally same as Windows logged-in User. I need to remove this requirement and let user login directly to app based on current Windows user. I've been searching lot and found it for WebSites but not for app. I'm using following client: var filter = new HttpBaseProtocolFilter(); Windows.Web.Http.HttpClient client = new Windows.Web.Http.HttpClient(filter); client.GetAsync(url); Is there any resource using which windows single sign on authentication can be done in UWP app? Edit: Some solution are Azure