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.

Hre's my FB.ui code:

FB.ui({ 
  method: 'feed', 
  message: '', 
  link: 'http://mywebaddress/pathToContent', 
  picture: 'http://mywebaddress/pathToPhoto/photo.jpg', 
  display: 'popup'
});

The dialog pops up perfectly, has the link no problem... but the picture doesn't show.

I verified the picture url is correct. Then used the Debugger to test the content url's open graph tags, it runs flawlessly.

Apparently the debugger clears some sort of caching, after I use the debugger on the link, the FB.ui dialog shows the picture just fine.

Is there something I can do about this? The content users are sharing from my site to Facebook isn't showing the picture like it should, making it a bit annoying for them to use (which is never a good thing!)

Thanks!

share|improve this question
You are saying that using the debugger solves the problem? so it's a caching issue... – ifaour Oct 15 '11 at 10:01
OK, so the url "graph stuff" is being cached without a photo even though from inception the page has had a valid og:image tag? And, the FB.ui code, even when provided a picture attribute, ignores it and instead uses the no photo cache? If it's a caching issue, sounds like it would be on Fb's side, how to get around it? – Chad Oct 15 '11 at 12:32
Have you tried submitting the FB.ui dialog? even if the image is not shown there...is it shown when you publish? if so, then I would assume there's something wrong in the dialog – ifaour Oct 15 '11 at 13:38
I have tried submitting it... I just updated my code, to make the picture attribute url slightly different than what the og:image tag has... I added ?v=1 to the path, after the picture's file extension. So far, this has made it better... but still testing. Thanks for the responses. – Chad Oct 15 '11 at 15:43

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.