在Facebook上发布...工作正常,但在控制台中抛出错误为什么?

时间:2011-04-13 16:27:07

标签: javascript facebook facebook-javascript-sdk

我设置了一个用于触发Facebook对话的FB.ui Feed,如here所述。

到目前为止一切正常。该对话框在fb用户配置文件中发布,但是当fb站点打开以供使用以发布对话框时,它会在js控制台中引发错误数百次,直到用户跳过或发布:

错误(130次): 不安全的JavaScript尝试使用URL访问框架....域,协议和端口必须匹配。

使用i init fbjs sdk的appId已在使用的域中注册:

sub.mydomain.com

交出来的json看起来像这样:

代码:

window.fbAsyncInit = function() {
    FB.init({appId: '209836882377466', status: true, cookie: true,
        xfbml: true
    });             
};          
(function() {
    var e = document.createElement('script'); e.async = true;
    e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
    if (!$('#fb-root script').length>0){
        document.getElementById('fb-root').appendChild(e);
    }

}());

这里是Feed:

 var jSON = {
                method: 'feed',
                name: $('#fbName input').val(),
                link: basicLnkStruct + phpSessionID,
                picture: homeURL + imgPath,
                caption: ' ',
                description: $('.fbDescript textarea').val(),
                message: ''
            };
    FB.ui(
        jSON
        ,
        function(response) {
            if (response && response.post_id) {
                 //alert('Post was published.');
            } else {
                //alert('Post was not published.');
            }
        }

    );

为什么会抛出这个错误?