rmaddu
rmaddu
Yes. In ...\Platforms\Windows\Package.appxmanifest file I have added below lines. I didn't add any in ...\Platforms\Windows\app.manifest.. ` $placeholder$ `
Anything missing here. Why kind is **Launch** always and why login window is not calling the call back function? Any help to resolve this?
  sample snapshots added. Getting Launch always.
Which sample should I execute - WinUIExMauiSample or WinUIExSample?
Hi, I am able to debug the WinUIExSample. Workflow also success. I have integrated the code to my application - - copied the WebAuthenticator.cs - Package.appxmanifest: added below lines `...
Any help is appreciated...
  ** Instead of using WinUiEx, copied the WebAuthenticator.cs to project. ** Do we need to copy this to any specific location in project or anywhere is fine? Do...
Please let me know if any other information is required?
One observation: **In WinUIEx sample:** both redirect_uri and callbackUri is same. string callbackUri = "winuiex://"; string authorizeUri = $"{server.Url}?response_type={responseType}&client_id={clientId}&redirect_uri= {Uri.EscapeDataString(callbackUri)}&scope=photo+offline_access"; var result = await WebAuthenticator.AuthenticateAsync(new Uri(authorizeUri), new Uri(callbackUri), oauthCancellationSource.Token); **In...