Hi.
I've moving my Xamarin app to UWP.
In my Xamarin app I use this method of authentication
https://gist.github.com/thomashagstrom/b0856a383bcdcf905c7a774c8c1b0879
The trick is
webView.Navigating += this.WebViewOnNavigating;
But.
In UWP webView has no Navigating event (see https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.controls.webview?view=winrt-18362)
So, how can I let user of my app to login to his/her dropbox account from my UWP app?
Can you show me a working example?
Aurangzeb.