1

抱歉,我尝试搜索此错误但没有结果我尝试使用 facebook 提要对话框从我的应用程序共享页面帖子这是我的代码

     function shareOnFacebook() {
FB.ui(
  {
    method        : 'feed',
    display       : 'popup',
    link : "http://www.facebook.com/photo.php?fbid=176944625849315",
  },
  function(response) {
    if (response && response.post_id) {

      // HERE YOU CAN DO WHAT YOU NEED
      console.log('OK! User has published on Facebook.');

    } else {
      console.log('Post was not published.');
    }
  }
);

}

我收到错误

API 错误代码:1

API 错误描述:发生未知错误

错误消息:kError 1349117:附件链接无效:链接数据无效。链接数据必须具有字符串“href”和“文本”属性

当我尝试使用 facebook 路径添加图片然后尝试运行 agin 我得到空白弹出窗口

请问有什么帮助吗?

4

2 回答 2

0

发布 CBroe 的评论,因为它似乎是答案......

您不能使用提要对话框在 facebook.com 上共享内容。尝试改用分享按钮:developers.facebook.com/docs/plugins/share-button – CBroe

(请+1评论。)

于 2014-08-01T11:03:02.043 回答
-1

Your call is wrong. At the end of link : "http://www.facebook.com/photo.php?fbid=176944625849315", there should be no comma. Here is the correct code:

function shareOnFacebook() {
    FB.ui(
      {
        method        : 'feed',
        display       : 'popup',
        link : "http://www.facebook.com/photo.php?fbid=176944625849315"
      },
      function(response) {

      }
);
于 2014-03-04T06:47:57.703 回答