2

这是我网页上的脚本:

<div id="fb-root"></div>
<script>
    window.fbAsyncInit = function () {
        FB.init({
            appId: '419349611446911', // App ID
            status: true, // check login status
            cookie: true, // enable cookies to allow the server to access the session
            xfbml: true  // parse XFBML
        });

        // Additional initialization code here
        FB.Event.subscribe('auth.authResponseChange', function (response) {
            if (response.status === 'connected') {
                // the user is logged in and has authenticated your
                // app, and response.authResponse supplies
                // the user's ID, a valid access token, a signed
                // request, and the time the access token 
                // and signed request each expire
                var uid = response.authResponse.userID;
                var accessToken = response.authResponse.accessToken;
                // TODO: Handle the access token
                // Do a post to the server to finish the logon
                // This is a form post since we don't want to use AJAX
                var form = document.createElement("form");
                form.setAttribute("method", 'post');
                form.setAttribute("action", '@Url.Action("FacebookLogin", "Account")');

                var field = document.createElement("input");
                field.setAttribute("type", "hidden");
                field.setAttribute("name", 'accessToken');
                field.setAttribute("value", accessToken);
                form.appendChild(field);

                document.body.appendChild(form);
                form.submit();

            } else if (response.status === 'not_authorized') {
                // the user is logged in to Facebook, 
                // but has not authenticated your app
            } else {
                // the user isn't logged in to Facebook.
            }
        });
    };

    // Load the SDK Asynchronously
    (function (d) {
        var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
        if (d.getElementById(id)) { return; }
        js = d.createElement('script'); js.id = id; js.async = true;
        js.src = "//connect.facebook.net/en_US/all.js";
        ref.parentNode.insertBefore(js, ref);
    } (document));
</script>

这是我的:LogOnPartial

@if(Request.IsAuthenticated) {
    <text>Hola, <strong>@User.Identity.Name</strong>!
    [ @Html.ActionLink("Log Off", "LogOff", "Account") ]</text>
}
else {
    <div class="fb-login-button" data-show-faces="false" data-width="200" data-max-rows="1"></div>
}

当我更改为auth.login单击登录按钮时,不会登录甚至重定向到任何地方。只是加载的一小段闪光,没有别的。当我使用 时auth.authReponseChange,我可以使用 Facebook 正确登录,但页面会一遍又一遍地重新加载。

我要问的是,我该如何解决这个错误?为什么auth.authResponseChange每次都会触发事件?

例子:

我退出本地网站:

FormsAuthentication.SignOut();

即便如此,Facebook 按钮也会自动让我登录,然后循环继续。什么是触发登录按钮单击?

4

1 回答 1

2

请尝试将事件订阅从 FB.Event.subscribe('auth.authResponseChange' 更改为 "auth.login"。这只会在用户第一次登录时触发您的代码。

以下摘自fb文档

auth.login 当您的应用第一次注意到用户时会触发此事件(换句话说,当它还没有有效的会话时会获得一个会话)。

auth.logout 当您的应用程序注意到不再有有效用户时会触发此事件(换句话说,它有一个会话但不能再验证当前用户)。

auth.authResponseChange 任何与身份验证相关的更改都会触发此事件,因为它们都会影响会话:登录、注销、会话刷新。只要用户在您的应用中处于活动状态,会话就会随着时间的推移而刷新。

auth.statusChange 通常你会想要使用 auth.authResponseChange 事件。但在极少数情况下,您需要区分这三种状态:

  • 连接的
  • 登录 Facebook 但未与您的
  • 应用程序 根本没有登录 Facebook。
于 2012-10-03T03:56:31.303 回答