1

我已经为 Facebook 创建了一个 android 应用程序并使用“com.facebook.LoginActivity”登录此方法使用 facebook 的应用程序登录,我需要独立登录。

类似于此问题 的内容如何为 facebook android 应用禁用单点登录? 我需要一些例子..非常感谢您的帮助....对不起我的英语。

4

2 回答 2

1

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.

于 2013-02-02T15:48:18.457 回答
1

对于 SDK 4,您需要设置setLoginBehavior(LoginBehavior.SUPPRESS_SSO);

于 2015-05-22T14:14:28.557 回答