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.

When I want to share a site on facebook and want to add a custom image it doesn't work. It always gives the same image (one that is somewhere on the web page).

This is the code I've used:

<html>
<head>
<meta property="og:title" content="Title" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.the-website.com" />
<meta property="og:image" content="http://url-to-image.com" />
<meta property="og:site_name" content="The content" />

</head>
<body>
<h1> Facebook Like </h1>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.the-website.com%2F&amp;send=false&amp;layout=button_count&amp;width=450&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:21px;" allowTransparency="true"></iframe>

</body>
</html>
share|improve this question
1  
Have you tried running the page through Facebook linter - developers.facebook.com/tools/lint - it may show up some issue. – jBit Aug 9 '11 at 14:19
can you post this as an answer so I can accept it? This solved up the issue – Killerwes Aug 9 '11 at 14:26
I've reposted below. Cheers! – jBit Aug 9 '11 at 14:35

3 Answers

up vote 2 down vote accepted

If you try running the page through Facebook linter - http://developers.facebook.com/tools/lint/ - it may show up some issue.

share|improve this answer

Did you read it ? http://developers.facebook.com/docs/reference/plugins/like/ There is a "code generator" which would do all coding for you. Try it, then copy&paste the code...

As for your code: - in this case - to have a like on a page - there is no meta needed (your example's meta are not needed). - you have probably something wrong inside src tag: my guess is to REMOVE the "font&" part, but this might be wrong...

In any case... just use the link I provided...

share|improve this answer
Both codes (iFrame and the meta tags) are created by that site, that's why i find it that weird – Killerwes Aug 9 '11 at 14:24

I had the same problem. What I did was, I just removed the entire line " <meta property="og:image" content="xxxxxxx" /> " . This will push the facebook crawler to scan for every images in the page. Now place the image you want to add somewhere in the page with width=1 and height=1. Users won't recognise this in your page. But this image will be scanned by the crawler and you can select it to show it on our page. This worked for me. I don't know whether it will work for you or not.

NB: This is just a workaround, not a good solution

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.