我刚创建一个使用最新Android SDK(v4.0.1)登录Facebook的新应用程序,我总是得到一个页面
您已经授权App。
这是我的应用中的MainActivity中的OnCreate:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
FacebookSdk.sdkInitialize(getApplicationContext());
setContentView(R.layout.activity_main);
if (AccessToken.getCurrentAccessToken() != null ||
Profile.getCurrentProfile() != null) {
// User should be logged, but process never go in this condition
}
perm.add("email");
perm.add("user_friends");
perm.add("user_likes");
perm.add("public_profile");
mCallbackManager = CallbackManager.Factory.create();
mLoginManager = LoginManager.getInstance();
mLoginManager.registerCallback(mCallbackManager, this);
mLoginManager.logInWithReadPermissions(this, perm);
如何检查此用户是否已登录/授权此应用程序?
已解决:此页面仅出现在模拟器中,而不出现在设备上。