So this entire adal thing is a massive pain to get to work properly... Whenever I attempt to do a login using one of the identity providers (installed and provided by the azure AD backend through ADAL) windows phone throws a "authentication_ui_failed" exception. I have been looking around and googling [...] read more
The WebAuthenticationBroker doesn't seem to be able to handle navigation to my ms-app://. Just throws this ugly error as you will see below. STEPS 1. Call AuthenticateAsync(), including callback uri obtained at runtime: WebAuthenticationBroker.GetCurrentApplicationCallbackUri() 2. Go through authorize process, hit Allow. 3. Instead of returning, the broker shows the page [...] read more
I am trying to implement a sign in / login function using Active Directory. I am basing myself in on this b2c-xamarin sample. Below is the relevant code that I am having issues with. I have made modifications here to simplify readability. I have inserted comments for anything noteworty, particularly [...] read more
So I was just messing around with Azure and decided to look at doing some authentication in a simple Windows 8.1 Xaml based application. I was following the steps outlined in this document. I Currently setup MobileServices, added an application to the Microsoft Store portal, and also configured the Live [...] read more
I'm attempting to build a graph using the directshow SDK. When I call GraphBuilder.AddSourceFilter, I get the error 0x800C000D private IGraphBuilder graphBuilder = null; private IBaseFilter sourceFilter = null; int hr = 0; graphBuilder = (IGraphBuilder)new FilterGraph(); hr = graphBuilder.AddSourceFilter(filename, @"Source1", out sourceFilter); After which hr returns the error code [...] read more
I add MIME filter to my WebBrowser Control by IInternetSession.RegisterMimeFilter。 The MIME type is "text/html"。 The filter have a bug that the flash cant shown in some site such as "http://cn.yahoo.com/". I tryed add "" before the tag,noneffective。 I return data directly but falsh still invisible。 I set the IE [...] read more
I'm building a UWP application and using web authentication broker for sign in. I'm using Azure B2C with another AD as an identity provider. When requesting an authorization code, it will always return a code when the scope parameter is: scope=openid If I change this to be: scope=openid offline_access, it [...] read more
I want to get access token from instagram api in windows store app Here's my code: string endURL = "ms-app://.."; string clientID = ".."; Uri endUri = new Uri(endURL); string startURL = "https://api.instagram.com/oauth/authorize/?" + "client_id=" + clientID + "&redirect_uri=" + endURL + "&response_type=code"; try { WebAuthenticationResult result = await WebAuthenticationBroker.AuthenticateAsync [...] read more
I would like to play an RSTP stream in Windows 10 using the QT Libraries in Visual Studio 2017. Using DirectShowPlayer in QT Ctrator I have this error: DirectShowPlayerService::doSetUrlSource: Unresolved error code 0x800c000d I found some code examples that use libVlc or QT-Gstreamer. Unfortunately, I'm new to the world of [...] read more