For this project http://www.cinematheque.fr/expositions-virtuelles/kubrick_web/index.php I'm trying to set up a FB like button (see top right) common to all pages.
The Like button iframe:
<iframe id="fb" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.cinematheque.fr%2Fexpositions-virtuelles%2Fkubrick_web%2Findex.php&layout=button_count&show_faces=false&width=450&action=like&font=lucida+grande&colorscheme=light&height=21" scrolling="no" frameborder="0" allowTransparency="true"></iframe>
I'm trying to set the OpenGraph meta tags' with values that are page-dependent, in particular the og:image (because the website is an artwork gallery, each page showing a different visual work which I want to use as the Like illustration).
Thus, I want to combine the benefits of having one unique Like counter for the site with a wide variety of data and illustrations in the FB wall story depending on the actual page you are when clicking the Like button.
The meta tags:
<meta property="og:title" content="Kubrick et le web" />
<meta property="og:type" content="director" />
<meta property="og:description" content="Graphistes, vidéastes, stylistes, plasticiens : toute une génération de créateurs talentueux s'est penchée depuis 15 ans sur l'œuvre kubrickienne pour lui rendre hommage, la questionner, la remixer. Découvrez notre portfolio, plus de 200 créations découvertes sur le web." />
<meta property="og:url" content="http://www.cinematheque.fr/expositions-virtuelles/kubrick_web/index.php" />
<meta property="og:site_name" content="La Cinémathèque française" />
<meta property="fb:app_id" content="24658885765" />
<meta property="og:image" content="http://www.cinematheque.fr/expositions-virtuelles/kubrick_web/images/600/201-1.jpg" />
To be consistent with the iframe, I use the same value for the og:url tag across the site (= the homepage URL), but that is perhaps wrong.
However, it doesn't work as expected because the FB story doesn't show the correct page-specific illustration but the generic image I've indicated for the homepage.
Could you tell me if what I'm trying to do (one counter / page-wise metadata) is valid and how to do it?