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 have this Facebook app where a user has to share an image. With that image they have to share I filled in a description that will show up next to the image on the users wall.

But I just found that the description is missing on pages that have the new timeline enabled. The full description does however show up in the preview screen of what they will post to their wall.

This is the fb.ui code. It does post the image itself, but the description is missing on walls that have the new timeline enabled, it works fine on none timeline enabled walls.

Any ideas on how to fix it, and make the description show up there as well? Or is it normal behavior for timeline walls to not show the description?

FB.ui(
  {
   method: 'feed',
   name: 'Test',
   link: 'https://www.facebook.com/test',  
   picture: 'test',
   caption: 'test',
   description: 'test'
  },
  function(response) {
    if (response && response.post_id) {
      alert('Okay');
    } else {
      alert('Fail');
    }
  }
);
share|improve this question
Are you hosting the link or is on a different server? – Gil Birman Mar 8 '12 at 22:25
It's on my own server. I found that I can post something to timeline walls with using the php skd instead of the js one. But then of course it still breaks in IE.... So still not completely fixed. – tijmen Mar 11 '12 at 11:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.