Facebook的提要按钮无法正常工作

时间:2012-01-22 19:55:15

标签: javascript facebook-javascript-sdk

$我在JS consol中得到以下内容

错误 Sharebutton发生错误。请稍后再试

API错误代码:191 API错误说明:指定的URL不归应用程序所有 错误消息:redirect_uri不归应用程序所有。

我正在按照以下方式进行配置

应用程序显示名称:

App Namespace:

联系电子邮件:

App域名: www.somthing.com

------------------------------------ JS

<script>
 window.fbAsyncInit= function() {
    FB.init({
      appId      : '204143816348127', // App ID

      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // Additional initialization code here
  };

  // Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     d.getElementsByTagName('head')[0].appendChild(js);
   }(document));

function kuky(){

FB.ui(
  {
   method: 'feed',
   message: 'getting educated about Facebook Connect',
   name: 'Connect',
   caption: 'The Facebook Connect JavaScript SDK',
      description: (
      'A small JavaScript library that allows you to harness ' +
      'the power of Facebook, bringing the user\'s identity, ' +
      'social graph and distribution power to your site.'
   ),
   link: 'http://www.fbrell.com/',
   picture: 'http://www.fbrell.com/f8.jpg',
   actions: [
        { name: 'fbrell', link: 'http://www.fbrell.com/' }
   ],
  user_message_prompt: 'Share your thoughts about RELL'
  },
  function(response) {
    if (response && response.post_id) {
      alert('Post was published.');
    } else {
      alert('Post was not published.');
    }
  }
);
}
</script>

1 个答案:

答案 0 :(得分:0)

191通常总是因为代码未在您的应用设置中的域中运行。此外,请务必在FB.init()中包含channelURL以获得更好的性能。