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.

Possible Duplicate:
How does Facebook Sharer select Images?

I'm using the following code to add a Facebook like button to my site:

<iframe src="http://www.facebook.com/plugins/like.php?href=XXXXXXXX&amp;send=false&amp;layout=button_count&amp;width=50&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px; height:21px;" allowTransparency="true"></iframe>

When I later look at my wall I can see the post that I've just liked. But it shows a gui-widget (from the sites grafik) not any other "valid" images. Is it possible to specify which image to show?

share|improve this question

marked as duplicate by bkaid, agf, Frédéric Hamidi, genesis, JoseK Oct 3 '11 at 5:41

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

You'll want to use open graph tags (namely <og:image>) to specify what image you want to show.

Additionally, you can use the URL Linter to debug what you're sending Facebook. You may have some issues with the linter as it says it decaches when you lint a URL, but in practice it doesn't always work that way.

share|improve this answer

You can provide metadata at the page you're liking that will populate the image.

Check this out: Want custom title / image / description in facebook share link from a flash app

In the example provided the page returns metadata that allows Facebook to set the description, caption, and image for the object (your page) being liked.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.