Facebook api返回错误代码100

时间:2013-03-05 13:30:38

标签: java javascript facebook facebook-javascript-sdk

每当我尝试通过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:// ...没有它......

每次结果相同时,“链接”无效。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

documentation并非特定于此,但您可能无法在此上下文中指定localhost链接。该URL仅对您本地计算机有效。它不适合作为公共网站上的链接。