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 は、ローカル マシン上でのみ有効です。公開 Web サイトへのリンクとしては適していません。

于 2013-03-05T13:39:34.083 に答える