I've done my research on this and coded and recoded (plus used the code generator on FB) my page to try to achieve the following -
I have a page of computer segments (Multimedia, Gaming etc) for a store that each have a Share section attached (FB, Twitter, Google+ etc) so that the user can say Like this segment and have it displayed on their timeline.
The standard way for creating a Like button is one button per page so that all the meta data can go to the top; but in this instance there is multiple buttons.
I found a technique using xfbml where the meta tags are stored on another html file -
<div class="fb-like" data-href="http://www.domain.com/assets/facebook/gaming.html" data-send="false" data-layout="button_count" data-width="200" data-show-faces="true" data-action="recommend" data-font="segoe ui"></div>
And this page contains -
<meta property="og:title" content="[Segment name] at [retailer website]. "/>
<meta property="og:url" content="[url back to segment page]"/>
<meta property="og:image" content="http://www.domain.co.uk/build/assets/images/gif/facebookBaseLogo.gif"/>
<meta property="og:description" content="I am looking for a [computer specs] [at retailer website]."/>
<meta property="og:site_name" content="[retailer name]"/>
<meta property="og:type" content="website"/>
<meta property="fb:admins" content="[my admin number]"/>
The technique works in that everything is pulled by FB into the timeline except the image - replaced by a 1x1pixel gif. I would understand if the entire technique failed, but it's just the image, so I checked with the debugger.
The debugger reports:
Like Button Warnings That Should Be Fixed
Admins And App ID Missing
fb:admins and fb:app_id tags are missing. These tags are necessary for Facebook to render a News Feed story that generates a high clickthrough rate.
Like Button Tag Missing og:title is missing. The og:title meta tag is necessary for Facebook to render a News Feed story that generates a high clickthrough rate.
Like Button Tag Missing og:type is missing. The og:type meta tag is necessary for Facebook to render a News Feed story that generates a high clickthrough rate.
Like Button Tag Missing og:image is missing. The og:image meta tag is necessary for Facebook to render a News Feed story that generates a high clickthrough rate.
Open Graph Warnings That Should Be Fixed
Inferred Property The 'og:url' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property The 'og:title' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property The 'og:image' property should be explicitly provided, even if a value can be inferred from other tags.
Tiny og:image All the images referenced by og:image must be at least 200px in both dimensions. Please check all the images with tag og:image in the given url and ensure that it meets the minimum specification.
So it is saying all the og data is missing - which is technically correct on THIS page, but it does manage to get the data from the supplied data-href and put it on FB except the image. I've read a lot about caching on FB being a royal pain, so I have checked and rechecked my image links and run through the debugger to get rescraped. Nothing. I'm not even convinced it is rescraped as quickly as people have said using Debugger as the link in the code (using Firebug) on the Timeline page doesn't seem to change as often I change the code. Then I saw the 200x200px - ah, the image isn't. So I set to 210x210px just in case. Again through the debugger. Nothing.
More research - the image is not behind https; I've tried storing it in same folder as html files with og tags, in assets/images/gif, resizing and saving as png or gif.
I actually found a perfect solution, which was the sharer.php method - this looks like it would have suited me to the ground - using this example http://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fshar.es%2FtxqZ9&t=One+Time+Facebook+Pop+Up+Like+Box+For+Blogger+%7C+Spice+Up+Your+Blog but I read Sharer has been retired for Like.
Am I missing something incredibly simple? I read there is also a way to force FB to rescrape every time you click Like/Recommend instead of going through the Debugger, but I couldn't understand how it fit into the javascript.
Any help in this would be truly appreciated.
cheers frank