在点击Feed上的分享时,facebook api显示奇怪的“平台故事分享”

时间:2012-03-01 21:09:11

标签: javascript facebook facebook-graph-api

我正在使用javascript sdk来显示FB对话框,以便在用户的墙上发布Feed。这很好地贴在墙上,但当你点击墙上的Feed中的“分享”链接时,“分享这个故事”对话框只显示“平台故事分享”

即使使用FB api文档中的示例代码,我也能得到它。

任何人都有任何想法为什么会这样?或者,如何删除Feed中的“共享”链接

附件是截图 enter image description here

例如来自FB docs

<script> 
  FB.init({appId: "YOUR_APP_ID", status: true, cookie: true});

  function postToFeed() {

    // calling the API ...
    var obj = {
      method: 'feed',
      link: 'https://developers.facebook.com/docs/reference/dialogs/',
      picture: 'http://fbrell.com/f8.jpg',
      name: 'Facebook Dialogs',
      caption: 'Reference Documentation',
      description: 'Using Dialogs to interact with users.'
    };

    function callback(response) {
      document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
    }

    FB.ui(obj, callback);
  }

</script>

1 个答案:

答案 0 :(得分:3)

已向Facebook提交有关此行为的错误:

https://developers.facebook.com/bugs/308745185846464

没有解决方法。