Facebook登录表现得很奇怪

时间:2013-03-15 18:59:33

标签: javascript facebook login defined

我有一个通过facebook选项登录的网站

我无法弄清楚什么是错的,我有两种错误

第一个,即使对我来说它可行(Chrome,Explorer)我的朋友收到“new_fb_login()未定义”错误

刚才我开始收到那些模棱两可的错误(chrome debug):

Unsafe JavaScript attempt to access frame with URL **facebooky URL** from
frame with URL http://site.co.il/. The frame being accessed set
'document.domain' to 'facebook.com', but the frame requesting access did not.
Both must set 'document.domain' to the same value to allow access.

我认为这可能与我的网站当前受密码保护有关,因为现在当我把密码放回去时我刚刚开始接收它们,但是在禁用后它们没有停止,可能需要一些时间来刷新? ..

我很欣赏这一点,谢谢!

这是我的代码,就在标记

之后
<div id="fb-root"></div>
<script>
    function new_fb_login() {  //
        if(!fb_connected){
            FB.login(function(response) {
                if (response.authResponse) {
                    fb_connected = true;
                    console.log('connected'); //Approved the app just now
                    login(true);
                } else {
                    fb_connected = false;
                    console.log('cancelled');
                }
            });
        }
        else{
            FB.api('/me', function(response) {
                login(true);
            });
        }
    }
function testAPI() {
    console.log('Logged');
    FB.api('/me', function(response) {
        console.log('Welcome, ' + response.name + '.');
    });
}
window.fbAsyncInit = function() {
    FB.init({
      appId      : 'MyActualCode', // App ID
      channelUrl : '//WWW.site.CO.IL/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // Additional init code here
    FB.getLoginStatus(function(response) {
      if (response.status === 'connected') {
        console.log('connected');
        fb_connected = true;
        //testAPI();
      } else if (response.status === 'not_authorized') {
          fb_connected = false;
          console.log('not_authorized');
        //login();
      } else {
        console.log('not_logged_in');
        fb_connected = false;
        //login();
      }
     });
};


// 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));

0 个答案:

没有答案