所以我有一个简单的登录按钮,可以在我的 oncreate 中执行此操作:
mLoginButton = (LoginButton)findViewById(R.id.connect_facebook_button);
mLoginButton.setApplicationId(.getResources().getString(R.string.app_id));
mLoginButton.setUserInfoChangedCallback(new LoginButton.UserInfoChangedCallback() {
public void onUserInfoFetched(GraphUser user) {
setUser(user); // Just sets mUser to be this user
try {
Toast.makeText(this, mUser.getFirstName(), Toast.LENGTH_SHORT).show();
} catch (Exception FacebookException) {
FacebookException.printStackTrace();
}
}
});
所有这些都被成功调用,包括 onUserInfoFetched。
问题是,在任何情况下,我的 Graphuser 用户都是空的。
我的 appID 是正确的,我的 android 哈希是他们给我的调试程序(在示例应用程序上测试运行良好),登录屏幕确实弹出......不太确定从这里去哪里。
另外,如果我按两次按钮,我会得到一个错误:
an attempt was made to open a session that has a pending request