facebook的feed按钮不工作

feed button for facebook not working

本文关键字:工作 按钮 feed facebook      更新时间:2023-09-26

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

错误"共享"按钮出错。请稍后再试

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

而我把我的配置如下

应用程序显示名称:

应用程序命名空间:

联系邮箱:

应用程序域: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>

191通常是因为代码不是从应用程序设置中的域运行的。此外,为了获得更好的性能,请确保在FB.int()中包含一个channelURL。