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.

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

share|improve this question
“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.” – you’d have to put the same URL that you are actually trying to like through the debugger to see what might be wrong with your tags. Do that, and please provide the URL of the actual page if you need further help. – CBroe Jul 18 '12 at 11:32
Check whether you have the Open Graph namespace. – Lego Jul 18 '12 at 12:35
I think I have solved the issue: 1) property="og:url" has to be the file in which the og tags are in - this may seem simple but I thought it referred to the url which had the Recommend/Like button on. The debugger was using this as a value to use to get the og data and not finding it 2) Editing the url value produces a success in the debugger (including the image) except for Parser Mismatched Metadata (I think the og meta data have to be in the right order) and Attempted Frozen Title Change (... because too many actions have been published against it.) – Frank Bradshaw Jul 18 '12 at 12:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.