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.

using Facebook Javascript SDK (since FBml doesn't work anymore), posting to a wall using my facebook app does not display name, description and caption at all. I tried adding a link and display, removed description as well, none seems to fix the issue.

Any help or note on this is helpful.

var description = $(this).parent().parent().children('.description').html();
var name = $(this).parent().parent().children('.name').html();

FB.ui(
  {
    method: 'feed',
    attachment: 
    {
      name: name,
      caption: 'Test App',
      description: description,
      link: appLink,
      href: appLink                       
    },
    action_links: 
    [
      { text: 'Test App', href: 'appLink' }
    ]
  },
  function(response) 
  {
    if (response && response.post_id) 
    {
      alert('Post was published.');
    } 
    else 
    {
      alert('Post was not published.');
    }
  }
);
share|improve this question

1 Answer

up vote 1 down vote accepted

This is actually a facebook bug. I've reported it to Facebook but haven't got any feedback since December 2011 after they've confirmed it a bug and assigned medium priority. Cheers.

share|improve this answer

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.