0

我已经使用 c# SDK 创建了一个应用程序。

画布页面http://mywebsite/工作正常,我完成了客户想要的工作,但是当我尝试通过https://apps.facebook.com/ApplicationName创建一个 iframe 来访问应用程序时http://mywebsite/,登录卡住了。

这是我点击连接时出现的内容: 在此处输入图像描述

那是权限窗口,权限出现了,我点了ok,什么也没发生。

代码:

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

        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;
                //alert("conectado");

                // 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", '/Home/Login');

                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') {
                  alert("Not Authorized");
                // the user is logged in to Facebook, 
                // but has not authenticated your app
              } else {
                  alert("Not logged In");
                // 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>
<fb:login-button perms="user_birthday,email"> Connect</fb:login-button> 

我可能知道问题出在哪里,但我需要确认。

问题是否在于 facebook 应用程序地址是 https 而我的应用程序 canva url 是 http ?

4

1 回答 1

0

找到答案了,如果你是在测试阶段,并且这种情况发生在你身上,你可以做下面的动作。

转到此链接https://www.facebook.com/settings?tab=security

并禁用安全浏览(这只是在您发布应用程序时)。那么您的应用程序应该可以正常工作。

一旦您准备好购买证书并发布您的应用程序,请再次启用此功能。

所以我的问题的答案是: 问题是 facebook 应用程序地址是 https 而我的应用程序 canva url 是 http 吗?

_

于 2013-01-08T18:24:17.133 回答