Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i'm using the javascript sdk to show the FB dialog to post a feed on the user's wall. this gets posted to the wall fine, but when you click the "share" link in the feed on the wall the "share this story" dialog just displays "Platform Story Share"

i get this even when using the example code from the FB api documentation.

anyone got any ideas why this happening? or alternatively, how to remove the "share" link in the feed

attached is a screenshot enter image description here

e.g from 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>

share|improve this question

1 Answer

up vote 3 down vote accepted

A bug has been filed with Facebook about this behavior:

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

There isn't a workaround for it.

share|improve this answer
it appears that facebook have fixed this bug – MakkyNZ Mar 6 '12 at 15:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.