neezer
neezer

Reputation: 20560

Facebook Share Dialog, user message not being passed through

Having issues getting the Share Dialog to work properly. My code is as follows (in 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;
      });

My app setting on Facebook (development app) are setup correct (Site URL is set to http://localhost:3000/).

In summary, everything works except for the message that the user can type into the dialog here:

share dialog

That value never shows up when the post reaches the user's timeline feed:

user profile

I think I'm following the documentation correctly. What am I missing?

Upvotes: 1

Views: 104

Answers (1)

lanan
lanan

Reputation: 2752

This appears to be a bug in sdk!

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

Upvotes: 1

Related Questions