FB.UI图片无法显示

时间:2011-09-05 03:48:42

标签: javascript facebook fbjs

此调用的所有内容均有效,但图片无法显示。 我在SO上发现了一个other question,但没有解析。

任何想法为什么这不显示图片?就像我所知,FB正在吃图片,因为它甚至没有在对话框中显示为< img>标签,如果我弄乱了URL它将检测到问题并抛出错误信息,但为什么它会吃掉图像呢?

FB.ui({method: 'feed',                                     
       app_id: 'XXXX',
         name: 'This is the name field',
         link: 'http://localhost:8080/facebook/',
      picture: 'http://localhost:8080/img/sample.gif',
      caption: 'This is the caption',
  description: 'Description field'},
       function(response) {
          if (response && response.post_id) {
                 alert('Post was published.');
          } else {
                 alert('Post was not published.');
          }
       });

1 个答案:

答案 0 :(得分:2)

因为您将代码放在localhost中。 Facebook真的不知道你的“本地主机”在哪里。 将您的代码放到公共托管,并写入IP路径或域名。