Im using xamarin.auth for facebook, google and twitter login. Its not closing browser after get success, if i close browser manually IsAuthenticated returning false. If i use isUsingNativeUI false it works fine but very ugly new page with uncontrolled color and title. Is where a way to change color and title on there? I can use these 2 ways too but need to fix.
var authenticator = new OAuth2Authenticator(
clientId,
Constants.FacebookScope,
new Uri(Constants.FacebookAuthorizeUrl),
new Uri(Constants.FacebookAccessTokenUrl),
null, isUsingNativeUI: true);
authenticator.Completed += OnAuthCompleted;
authenticator.Error += OnAuthError;
AuthenticationState.Authenticator = authenticator;
var presenter = new Xamarin.Auth.Presenters.OAuthLoginPresenter();
presenter.Login(authenticator);
Ugly navigation bar and title


I just solved my issue with correct redirect url. 111111 means your client Id, add fb on start, ://authorize to the end of it.
On ios it say unknown or wrong redirect url, you can fix it with add this on your plist.