我创建了一个使用Facebook登录的函数。
public void Login ()
{
var ctx = Forms.Context as MainActivity;
var accounts =
new List<Account>(AccountStore.Create (ctx).FindAccountsForService (SERVICE));
if (accounts.Count == 1) {
GetAccount (accounts [0]);
return;
}
var auth = new OAuth2Authenticator (
clientId: FBID,
scope: string.Empty,
authorizeUrl: new Uri (AUTH_URL),
redirectUrl: new Uri (REDIRECT_URL));
auth.Completed += (sender, eventArgs) => {
AccountStore.Create (ctx).Save (eventArgs.Account, "Facebook");
GetAccount (eventArgs.Account);
};
ctx.StartActivity (auth.GetUI (ctx));
}
问题是,当我在FB登录页面中输入我的凭据后,在到达Completed
事件之前抛出异常。
我已经下载了Xamarin。从GitHub的Auth项目试图调试程序,但不幸的是它没有在断点处中断。
Caused by: JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object
at Xamarin.Auth.OAuth2Authenticator.OnRetrievedAccountProperties (System.Collections.Generic.IDictionary`2) [0x00017] in d:DownloadsXamarin.Auth-masterXamarin.Auth-mastersrcXamarin.AuthOAuth2Authenticator.cs:373
at Xamarin.Auth.OAuth2Authenticator.OnRedirectPageLoaded (System.Uri,System.Collections.Generic.IDictionary`2,System.Collections.Generic.IDictionary`2) [0x00016] in d:DownloadsXamarin.Auth-masterXamarin.Auth-mastersrcXamarin.AuthOAuth2Authenticator.cs:282
at Xamarin.Auth.WebRedirectAuthenticator.OnPageEncoun...[intentionally cut off]
我在这个问题上挣扎了一段时间了。请帮助!
我找到了!这是各种情况的综合。
我的调试器没有在断点处停止(不知道为什么)。
造成这个问题的原因是我在一个OnCreate()
方法中用上面的Login
方法创建了一个对象。
然后我给该对象的事件附加了一个eventandler。
Authenticator从他的Intent返回的那一刻,我的对象被绑定的Context就消失了。
这可能是有点模糊的理解,但也许一些代码将进一步澄清。
//Not working, causes the problem
public class MyActivity {
MyAuthenticator auth; //the object containing Login();
public void OnCreate() {
auth=new MyAuthenticator();
auth.LoggedIn += blabla;
}
public void SomeMethod() {
auth.Login();
}
}
解决方案:
//Working, own scope
public class MyActivity {
public void OnCreate() {
//ILB
}
public void SomeMethod() {
var auth=new MyAuthenticator();
auth.LoggedIn += blabla;
auth.Login();
}
}