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イベントが毎回発生するのですか?

例:

ローカルWebサイトからログアウトします。

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イベントを使用する必要があります。ただし、まれに、次の3つの状態を区別する必要があります。

  • 接続済み
  • Facebookにログインしましたが、
  • アプリケーションFacebookにまったくログインしていません。
于 2012-10-03T03:56:31.303 に答える