我只在UWP上遇到过这个问题
private void Button_OnClicked(object sender, EventArgs e)
{
var clientId = Constants.GoogleUWPClientID;
var clientSecret = Constants.GoogleUWPClientSecret;
var redirectUrl = Constants.GoogleUWPRedirectUrl;
var auth = new OAuth2Authenticator(
clientId: clientId,
clientSecret: clientSecret,
scope: Constants.GoogleScope,
authorizeUrl: new Uri(Constants.GoogleAuthorizeUrl),
accessTokenUrl: new Uri(Constants.GoogleAccessTokenUrl),
redirectUrl: new Uri(redirectUrl),
getUsernameAsync: null,
isUsingNativeUI: true
);
// Login Events
auth.Completed += AuthOnCompleted;
auth.Error += AuthOnError;
auth.IsLoadableRedirectUri = true;
AuthenticationState.Authenticator = auth;
var presenter = new Xamarin.Auth.Presenters.OAuthLoginPresenter();
presenter.Login(auth);
}
我在UWP上初始化了Xamarin.Auth
Xamarin.Forms.Forms.Init(e);
global::Xamarin.Auth.Presenters.UWP.AuthenticationConfiguration.Init();
这是CompletedEvent处理程序
private async void AuthOnCompleted(object sender, AuthenticatorCompletedEventArgs authenticatorCompletedEventArgs)
{
//var auth = sender as Xamarin.Auth.OAuth2Authenticator;
//auth.DoNotEscapeScope = true;
// We presented the UI, so it's up to us to dimiss it on iOS.
//DismissViewController(true, null);
if (authenticatorCompletedEventArgs.IsAuthenticated)
{
var request = new OAuth2Request("GET", new Uri(Constants.GoogleUserInfoUrl), null, authenticatorCompletedEventArgs.Account);
var response = await request.GetResponseAsync();
if (response != null)
{
var userJson = response.GetResponseText();
var user = JsonConvert.DeserializeObject<GoogleUser>(userJson);
//UserPicture = user.Picture;
//GivenName = user.GivenName;
//Email = user.Email;
}
}
else
{
// The user cancelled
//ErrorMessage = "Cancelled authentication !";
}
}
成功登录后,AuthOnCompleted成功启动,但一旦结束(或者遇到我的一个请求等待GetResponseAsync到Google的API),它就会完全刷新应用程序。
我的猜测是,这是因为我没有像在Android和iOS中那样对待redirect-url?
在官方文档中没有提到UWP,所以我不确定我是否遗漏了某些东西
我真的很笨,我错过了什么?
编辑01
我发现了一个修复但我担心它可能会产生后果。
我确实使用了NavigationCacheMode="Enabled"
而不是默认的“取消”。
一旦我离开它的上下文并转到另一个ContentPage / Page / Frame,这将基本保留实例的缓存版本。
因为UWP中的导航不像Xamarin那样发生,所以你必须指定frame.Navigate(typeof(targetPage),args)
,这样你就不得不为每个页面处理缓存(我猜)
让我担心的是MainPage并使用UWP中的此设置以及LoadApplication(new SharedProj.App())
此设置何时会被任何后续ContentPages
稍微继承,这可能会导致应用性能出现问题?
要做一些测试以检查我的假设
<forms:WindowsPage
x:Class="AnonymousCheckerApp.UWP.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:forms="using:Xamarin.Forms.Platform.UWP"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:AnonymousCheckerApp.UWP"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
NavigationCacheMode="Enabled"
>
答案 0 :(得分:1)
我已经测试了您的代码并重现了&#34;问题&#34;。在auth完成后应用程序将刷新是正常行为。因为login page在显示登录页面时取代当前内容页面。
public void Login(Authenticator authenticator)
{
authenticator.Completed += AuthenticatorCompleted;
System.Type page_type = authenticator.GetUI();
Windows.UI.Xaml.Controls.Frame root_frame = null;
root_frame = Windows.UI.Xaml.Window.Current.Content as Windows.UI.Xaml.Controls.Frame;
root_frame.Navigate(page_type, authenticator);
return;
}
当AuthOnCompleted
重新加载便携式库时。
public MainPage()
{
this.InitializeComponent();
LoadApplication(new XamarinAuthTest.App());
}
因此应用程序将重新启动/刷新&#34;。
编辑01
如果NavigationCacheMode="Enabled"
,则在完成身份验证后,应用不会重新启动。因为MainPage
的构造函数方法不会在缓存模式下执行。如果您的应用程序可以接受页面缓存的设计模式。您不必担心应用程序性能。