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.

Following is the code I am using to share my posts on Facebook. Everything is working properly but sometimes on some posts the thumbnail image is not showing.

<?php
$title=urlencode('Facebook Share Platform');
$image=urlencode('imagepath');
$summary=urlencode('Check This Out');
$url=urlencode('http://apps.facebook.com/yourapplication');
?>

window.open('http://www.facebook.com/sharer.php?s=100&p[title]=<?php echo $title; ?>&p[summary]=<?php echo $summary; ?>&p[url]=<?php echo $url; ?>&p[images][0]=<?php echo $imagepath; ?>', 'sharer', 'toolbar=0,status=0,width=626,height=436');

I have checked the URLs and everything I could but couldn't figure out the problem.

share|improve this question

1 Answer

up vote 1 down vote accepted

Is your image at least 50x50 and with an aspect ratio of 3:1 or less? You haven't really given enough information there to solve your issue, so I'm just guessing based on the most common issue i see

{edit:} The 3:1 image ratio requirement is documented here and appears to be the OP's problem

share|improve this answer
There is something I forgot to mention. when the share dialog come up I tried to read the HTML of that dialog, and found that the HTML has my image but the divs showing that image are hidden.. can u help – Syed Rizwan Ali Nov 11 '11 at 9:38
To answer your question my image is bigger than 50x50 – Syed Rizwan Ali Nov 11 '11 at 9:40
What's the aspect ratio? (height/width and width/height need to be less than 3.0) – Igy Nov 11 '11 at 9:59
there is a lot variation in aspect ratio.. I cannot control that.. – Syed Rizwan Ali Nov 11 '11 at 10:20
@Igy, where is this documented? – zzzzBov May 8 '12 at 16:01
show 1 more comment

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.