Facebook对话请求ie9& 10 sec7111错误消息

时间:2013-03-26 10:15:53

标签: facebook ssl internet-explorer-9 internet-explorer-10

我开发了一个Facebook_App,您可以通过请求对话框邀请您的朋友。它适用于Firefox和Chrome,但在ie9和10用户获得了混合内容警告"并且无法单击共享按钮,如果他们确认消息,则重新加载应用程序并且必须从头开始。如果我使用ie开发者工具进行debbug,我会收到以下错误消息:

  

SEC7111:HTTPS安全受到损害   http://static.ak.facebook.com/connect/xd_arbiter.php?.....

     

SEC7111:HTTPS安全受到损害   http://static.ak.facebook.com/connect/xd_arbiter.php?version=X

有谁知道为什么?这是我的代码:

 <body>
    <div id="fb-root"></div>

    <script src="https://connect.facebook.net/de_DE/all.js"></script>       
        <div id="container" class="page004">
            <div id="share"><input class="btn_send" type="button" onclick="sendRequestViaMultiFriendSelector(); return false;" value="" /></div> 


    <script>

    FB.init({
        appId  : 'XXXXXXXXXXX',
        frictionlessRequests: true
    });

    function sendRequestViaMultiFriendSelector() {
        FB.ui({method: 'apprequests', message: 'MESSAGE'}, requestCallback);
    }

    function requestCallback(response) {
        window.location = "referer.php";
    }

    </script>
    </body>

0 个答案:

没有答案