1

每次我尝试通过 Facebook JS Sdk 调用发送对话框时都会出现此错误。

API 错误代码:100 API 错误描述:无效参数错误消息:“链接”无效。

这是我的代码。

在里面

     window.fbAsyncInit = function() {
            // init the FB JS SDK
            FB.init({
                appId      : '${sp.apiKey}', // App ID from the App Dashboard
                //       channelUrl : 'http://localhost:8084/facebook/callback', // Channel File for x-domain communication
                status     : true, // check the login status upon init?
                cookie     : true, // set sessions cookies to allow your server to access the session?
                xfbml      : true  // parse XFBML tags on this page?
            });

            // Additional initialization code such as adding Event Listeners goes here

        };
        (function(d, debug){
            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" + (debug ? "/debug" : "") + ".js";
            ref.parentNode.insertBefore(js, ref);
        }(document, /*debug*/ true));

发送对话功能

 function sendFacebookMessage(id, jobid){

            FB.ui({
                method: 'send',
                name: 'Some text here.',
                to:id,
                link: 'www.some-url.com'

               //tomcat is running on port 8084
            });
        }  

我试过 http:// ...没有它...

每次结果都相同..“链接”无效。

有任何想法吗?

4

1 回答 1

1

文档没有具体说明,但您可能无法localhost在此上下文中指定链接。该 URL 仅对您在本地计算机上有效。它不适合作为公共网站上的链接。

于 2013-03-05T13:39:34.083 回答