I want to authenticate a windows 8 app via OAuth on a service. This works by using the WebView control and navigate the user with a proper URL to the service where the authentication takes place.
If the user is authenticated by the service, he is redirected to a success page.
I'd like to get the information about this redirect so that i can start the application automatically.
I've tried the the LoadComplete event which is fired when a page is loaded, but there i only get the request uri, but not the redirect uri.
webView.LoadCompleted += webView_LoadCompleted;
webView.Navigate(new Uri("service uri));
Has anyone an idea howto get the redirect url, or at least the page content(This i could parse and look for something like "great, you're authenticated")