使用facebook c#sdk退出我的网站 - 但不是完全脱离Facebook?

时间:2012-06-22 15:14:05

标签: facebook facebook-graph-api facebook-c#-sdk

我正在使用Facebook C#SDK允许用户使用Facebook登录我的网站。

要注销,我可以使用fb.logout,但这会将用户从Facebook和我的网站中记录下来,这对用户来说似乎很烦人且不必要。

我非常有信心当他们退出我的网站时他们不必退出Facebook,因为digg.com提供了我正在使用的功能 - 登录和退出Facebook,而无需登录用户离开他们的Facebook帐户。

这是我用于登录/退出的代码:

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

            // Handle successful log in.
            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;

                    // 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", '/login.aspx');

                    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
                    alert("Logged in to facebook but not authenticated MT");
                } 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>

  <div class="fb-login-button" autologoutlink="true"></div>

您会看到,当用户登录时,我会重定向到/login.aspx,后者提供我网站的登录功能(使用.net身份验证),并且还会将accessstoken保存到会话以供用户在会话期间使用。

我需要注销按钮来执行相同的操作,但相反,不需要将用户完全记录在facebook之外。

我已经在网上找了好几个小时,但似乎没有找到任何方式调用fb.logout而不会将用户从他们的Facebook帐户中删除。如果digg.com可以做到这一点,我当然也必须能够做到这一点吗?

非常感谢,

1 个答案:

答案 0 :(得分:0)

  

我非常有信心,当他们退出我的网站时,他们不必退出Facebook

Facebook Platform Policies另有说法 - I部分。功能和功能,#6

  

您的网站必须提供明确的&#34;退出&#34;选项也会将用户从Facebook中记录下来。