我已经为 Facebook 创建了一个 android 应用程序并使用“com.facebook.LoginActivity”登录此方法使用 facebook 的应用程序登录,我需要独立登录。
类似于此问题 的内容如何为 facebook android 应用禁用单点登录? 我需要一些例子..非常感谢您的帮助....对不起我的英语。
我已经为 Facebook 创建了一个 android 应用程序并使用“com.facebook.LoginActivity”登录此方法使用 facebook 的应用程序登录,我需要独立登录。
类似于此问题 的内容如何为 facebook android 应用禁用单点登录? 我需要一些例子..非常感谢您的帮助....对不起我的英语。
If you're using LoginButton (as in the HelloFacebookSample), you can disable SSO like so:
loginButton = (LoginButton) findViewById(R.id.login_button);
loginButton.setLoginBehavior(SessionLoginBehavior.SUPPRESS_SSO);
Otherwise, You will have to set the SessionLoginBehavior similarly.
对于 SDK 4,您需要设置setLoginBehavior(LoginBehavior.SUPPRESS_SSO);