Facebook Share Dialog,用户消息未通过

时间:2014-11-07 22:44:20

标签: facebook facebook-javascript-sdk

在让Share Dialog正常工作时遇到问题。我的代码如下(在slim中):

doctype html
html
  head
    title test page!!!

    javascript:
      window.fbAsyncInit = function () {
        FB.init({
          appId: 'xxx',
          xfbml: true,
          version: 'v2.2'
        });
      };

      (function (d, s, id) {
        var js, fjs = d.getElementsByTagName(s)[0];
        if (d.getElementById(id)) {
          return;
        }
        js = d.createElement(s);
        js.id = id;
        js.src = "//connect.facebook.net/en_US/sdk.js";
        fjs.parentNode.insertBefore(js, fjs);
      }(document, 'script', 'facebook-jssdk'));

  body
    h1 Facebook custom share button test

    a href='#' Testing!!

    javascript:
      document.getElementsByTagName('a')[0].addEventListener('click', function() {
        FB.ui({ method: 'share', href: 'http://www.washingtonpost.com' }, function(resp) {});
        return false;
      });

Facebook(开发应用)上的我的应用设置设置正确(网站网址设置为http://localhost:3000/)。

总之, 的所有内容 除了用户可以在此处输入对话框的消息外:

share dialog

当帖子到达用户的时间轴Feed时,该值永远不会显示:

user profile

我想我正确地关注the documentation。我错过了什么?

1 个答案:

答案 0 :(得分:1)

这似乎是sdk中的一个错误!

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